| 1 | <?php  | 
            ||
| 18 | trait ServiceManagerAwareTrait  | 
            ||
| 19 | { | 
            ||
| 20 | /**  | 
            ||
| 21 | * @var ServiceManager  | 
            ||
| 22 | */  | 
            ||
| 23 | private $serviceManager;  | 
            ||
| 24 | |||
| 25 | /**  | 
            ||
| 26 | * @param ServiceLocatorInterface $serviceLocator  | 
            ||
| 27 | */  | 
            ||
| 28 | public function setServiceManager(ServiceLocatorInterface $serviceLocator)  | 
            ||
| 37 | |||
| 38 | /**  | 
            ||
| 39 | * @return \Zend\ServiceManager\ServiceManager  | 
            ||
| 40 | */  | 
            ||
| 41 | public function getServiceManager()  | 
            ||
| 45 | }  | 
            ||
| 46 |