| 1 | <?php |
||
| 19 | class ServiceFactory implements ServiceFactoryInterface |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * @var string |
||
| 23 | */ |
||
| 24 | protected $serviceNamespace = __NAMESPACE__ . '\\' . 'Service'; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @inheritdoc |
||
| 28 | */ |
||
| 29 | 51 | public function createService($serviceName, array $serviceOptions = []) |
|
| 57 | |||
| 58 | public function setServiceNamespace($namespace) |
||
| 62 | |||
| 63 | 51 | protected function getServiceNamespace() |
|
| 67 | } |
||
| 68 |