for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Copyright 2017 NanoSector
*
* You should have received a copy of the MIT license with the project.
* See the LICENSE file for more information.
*/
namespace Yoshi2889\Container;
trait ContainerTrait
{
* @var ComponentContainer
protected $container;
* @return ComponentContainer
public function getContainer(): ComponentContainer
return $this->container;
}
* @param ComponentContainer $container
public function setContainer(ComponentContainer $container)
$this->container = $container;