for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace pjpawel\LightApi\Container\Awareness;
use Psr\Container\ContainerInterface;
trait ContainerAwareTrait
{
protected ContainerInterface $container;
/**
* @inheritDoc
*/
public function setContainer(ContainerInterface $container): void
$this->container = $container;
}