for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Consolidation\Bootstrap;
trait BootstrapAwareTrait
{
/**
* @var BootInterface
*/
protected $bootstrap;
public function setBootstrap(BootInterface $bootstrap)
$this->bootstrap = $bootstrap;
}
public function setBootstrapCurator(BootstrapCurator $curator)
$curator->register($this);