1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24:
<?php
/**
* Interface FactoryInterface
*
* @package Faulancer\ServiceLocator
* @author Florian Knapp <office@florianknapp.de>
*/
namespace Faulancer\ServiceLocator;
/**
* Interface FactoryInterface
*/
interface FactoryInterface
{
/**
* Create the factory for the requested service
*
* @param ServiceLocatorInterface $serviceLocator
* @return object
*/
public function createService(ServiceLocatorInterface $serviceLocator);
}