for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Consolidation\TestUtils;
use Consolidation\Bootstrap\BootInterface;
use Consolidation\Bootstrap\BootstrapAwareInterface;
use Consolidation\Bootstrap\BootstrapAwareTrait;
class TestBootstrapAwareObject implements BootstrapAwareInterface
{
use BootstrapAwareTrait;
public function getBootstrap()
return $this->bootstrap;
}