14 lines
308 B
PHP
14 lines
308 B
PHP
<?php
|
|
namespace ZendBench\ServiceManager\BenchAsset;
|
|
|
|
use Zend\ServiceManager\FactoryInterface;
|
|
use Zend\ServiceManager\ServiceLocatorInterface;
|
|
|
|
class FactoryFoo implements FactoryInterface
|
|
{
|
|
public function createService(ServiceLocatorInterface $serviceLocator)
|
|
{
|
|
return new Foo();
|
|
}
|
|
}
|