for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace Anomaly\Streams\Platform\Console;
use Illuminate\Contracts\Events\Dispatcher;
/**
* Class Kernel
*
* @link http://pyrocms.com/
* @author PyroCMS, Inc. <[email protected]>
* @author Ryan Thompson <[email protected]>
*/
class Kernel extends \Illuminate\Foundation\Console\Kernel
{
* Get the Artisan application instance.
* @return \Illuminate\Console\Application
protected function getArtisan()
if (is_null($this->artisan)) {
return $this->artisan = (new Application($this->app, $this->events, $this->app->version()))
->resolveCommands($this->commands);
}
return $this->artisan;
* Include base commands.
protected function commands()
require base_path('routes/console.php');