for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Symplify\ControllerAutowire\Tests\CompleteTestSource\Scan;
use Symfony\Component\DependencyInjection\ContainerAwareInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
final class ContainerAwareController implements ContainerAwareInterface
{
/**
* @var ContainerInterface
*/
private $container;
* {@inheritdoc}
public function setContainer(ContainerInterface $container = null)
$this->container = $container;
}
* @return ContainerInterface
public function getContainer()
return $this->container;