Skip to content

Commit

Permalink
Revert "refactor: Removal of Two Deprecated Classes"
Browse files Browse the repository at this point in the history
This reverts commit 62855c5.
  • Loading branch information
usernane committed Mar 19, 2024
1 parent 62855c5 commit b8ac095
Show file tree
Hide file tree
Showing 2 changed files with 481 additions and 0 deletions.
44 changes: 44 additions & 0 deletions webfiori/framework/EAbstractWebService.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
<?php
/**
* This file is licensed under MIT License.
*
* Copyright (c) 2020 Ibrahim BinAlshikh
*
* For more information on the license, please visit:
* https://github.com/WebFiori/.github/blob/main/LICENSE
*
*/
namespace webfiori\framework;

use webfiori\http\AbstractWebService;
use webfiori\http\WebServicesManager;
/**
* A class which represents a web service.
*
* @author Ibrahim
*
* @since 2.3.6
*/
abstract class EAbstractWebService extends AbstractWebService {
/**
*
* @return ExtendedWebServicesManager|null
*/
public function getManager() {
return parent::getManager();
}
/**
* Associate the web service with a manager.
*
* The developer does not have to use this method. It is used when a
* service is added to a manager.
*
* @param WebServicesManager|null $manager The manager at which the service
* will be associated with. If null is given, the association will be removed if
* the service was associated with a manager.
*
*/
public function setManager(WebServicesManager $manager = null) {
parent::setManager($manager);
}
}
Loading

0 comments on commit b8ac095

Please sign in to comment.