This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// laravel 5.1 kernel (http and console) to bootstrap using the custom ConfigureLogging class | |
public function __construct(Application $app, Router $router) | |
{ | |
parent::__construct($app, $router); | |
array_walk($this->bootstrappers, function(&$bootstrapper) | |
{ | |
if($bootstrapper === 'Illuminate\Foundation\Bootstrap\ConfigureLogging') | |
{ |