for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php declare(strict_types=1);
namespace League\Route;
use Psr\Container\ContainerInterface;
trait ContainerAwareTrait
{
/**
* @var ContainerInterface|null
*/
protected $container;
* {@inheritdoc}
public function getContainer(): ?ContainerInterface
return $this->container;
}
public function setContainer(ContainerInterface $container): ContainerAwareInterface
$this->container = $container;
return $this;