14 lines
262 B
PHP
14 lines
262 B
PHP
<?php
|
|
|
|
namespace OpenCloud\Common\Service;
|
|
|
|
use OpenCloud\Common\Api\Operator;
|
|
|
|
/**
|
|
* Represents the top-level abstraction of a service.
|
|
*
|
|
* @package OpenCloud\Common\Service
|
|
*/
|
|
abstract class AbstractService extends Operator implements ServiceInterface
|
|
{
|
|
}
|