for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Deployee\Components\Container;
trait SetContainerTrait
{
/**
* @var ContainerInterface
*/
protected $container;
* @param ContainerInterface $container
public function setContainer(ContainerInterface $container)
$this->container = $container;
}