Proem\Proem::bootstrap PHP Метод

bootstrap() публичный Метод

Bootstrap the framework / application.
public bootstrap ( Proem\Signal\EventInterface $initEvent = null )
$initEvent Proem\Signal\EventInterface An optional event to be triggered on init.
    public function bootstrap(EventInterface $initEvent = null)
    {
        if ($initEvent === null) {
            $initEvent = new Event('proem.init');
        }
        $this->assetManager->get('eventManager')->trigger($initEvent);
        return $this;
    }