for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Devmachine\Bundle\ServicesInjectorBundle\ServiceLocator;
use Symfony\Component\DependencyInjection\ContainerInterface;
class SymfonyServiceLocator extends CallableServiceLocator
{
public function __construct(ContainerInterface $container)
parent::__construct([$container, 'get']);
}