Crunz\EventRunner::start PHP Method

start() protected method

Run an event process
protected start ( Event $event )
$event Event
    protected function start(Event $event)
    {
        // Running the before-callbacks
        $event->outputStream = $this->invoke($event->beforeCallbacks());
        $event->start();
    }