s */ class MockProvider { /** * @var array */ public $options; /** * @var \Zend\ServiceManager\ServiceLocatorInterface */ public $serviceLocator; /** * @param array $options * @param \Zend\ServiceManager\ServiceLocatorInterface $serviceLocator */ public function __construct(array $options, ServiceLocatorInterface $serviceLocator) { $this->options = $options; $this->serviceLocator = $serviceLocator; } }