1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26:
<?php
/**
* Class SessionManagerServiceFactory | SessionManagerServiceFactory.php
* @package Faulancer\Service
* @author Florian Knapp <office@florianknapp.de>
*/
namespace Faulancer\Service\Factory;
use Faulancer\Service\SessionManagerService;
use Faulancer\ServiceLocator\FactoryInterface;
use Faulancer\ServiceLocator\ServiceLocatorInterface;
class SessionManagerServiceFactory implements FactoryInterface
{
/**
* @param ServiceLocatorInterface $serviceLocator
* @return SessionManagerService
* @codeCoverageIgnore
*/
public function createService(ServiceLocatorInterface $serviceLocator)
{
return new SessionManagerService();
}
}