-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
10 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,18 +9,18 @@ | |
* file that was distributed with this source code. | ||
*/ | ||
|
||
namespace Glavweb\CmsContentBlock\Service; | ||
namespace Glavweb\CmsContentBlock\Manager; | ||
|
||
use Psr\Http\Message\ResponseInterface; | ||
use Glavweb\CmsRestClient\CmsRestClient; | ||
|
||
/** | ||
* Class AbstractContentService | ||
* Class AbstractContentManager | ||
* | ||
* @package Glavweb\CmsContentBlock | ||
* @author Andrey Nilov <[email protected]> | ||
*/ | ||
abstract class AbstractContentService | ||
abstract class AbstractContentManager | ||
{ | ||
/** | ||
* Http status constants | ||
|
@@ -35,7 +35,7 @@ abstract class AbstractContentService | |
protected $restClient; | ||
|
||
/** | ||
* ContentBlockService constructor. | ||
* ContentBlockManager constructor. | ||
* | ||
* @param CmsRestClient $restClient | ||
*/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,17 +9,15 @@ | |
* file that was distributed with this source code. | ||
*/ | ||
|
||
namespace Glavweb\CmsContentBlock\Service; | ||
|
||
use Glavweb\CmsRestClient\CmsRestClient; | ||
namespace Glavweb\CmsContentBlock\Manager; | ||
|
||
/** | ||
* Class ContentBlockService | ||
* Class ContentBlockManager | ||
* | ||
* @package Glavweb\CmsContentBlock | ||
* @author Andrey Nilov <[email protected]> | ||
*/ | ||
class ContentBlockService extends AbstractContentService | ||
class ContentBlockManager extends AbstractContentManager | ||
{ | ||
/** | ||
* @var array | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,18 +9,15 @@ | |
* file that was distributed with this source code. | ||
*/ | ||
|
||
namespace Glavweb\CmsContentBlock\Service; | ||
|
||
use Psr\Http\Message\ResponseInterface; | ||
use Glavweb\CmsRestClient\CmsRestClient; | ||
namespace Glavweb\CmsContentBlock\Manager; | ||
|
||
/** | ||
* Class OptionService | ||
* Class OptionManager | ||
* | ||
* @package Glavweb\CmsContentBlock | ||
* @author Andrey Nilov <[email protected]> | ||
*/ | ||
class OptionService extends AbstractContentService | ||
class OptionManager extends AbstractContentManager | ||
{ | ||
/** | ||
* @var array | ||
|