for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Class HttpServiceFactory | HttpServiceFactory.php
* @package Faulancer\Service\Factory
* @author Florian Knapp <[email protected]>
*/
namespace Faulancer\Service\Factory;
use Faulancer\Service\HttpService;
use Faulancer\ServiceLocator\FactoryInterface;
use Faulancer\ServiceLocator\ServiceLocatorInterface;
* Class HttpServiceFactory
class HttpServiceFactory implements FactoryInterface
{
* @param ServiceLocatorInterface $serviceLocator
* @return HttpService
* @codeCoverageIgnore
public function createService(ServiceLocatorInterface $serviceLocator)
return new HttpService();
}