#!/usr/bin/env php boot(); /* |-------------------------------------------------------------------------- | Load The Artisan Console Application |-------------------------------------------------------------------------- | | We'll need to run the script to load and return the Artisan console | application. We keep this in its own script so that we will load | the console application independent of running commands which | will allow us to fire commands from Routes when we want to. | */ $artisan = Illuminate\Console\Application::start($app); /* |-------------------------------------------------------------------------- | Run The Artisan Application |-------------------------------------------------------------------------- | | When we run the console application, the current CLI command will be | executed in this console and the response sent back to a terminal | or another output device for the developers. Here goes nothing! | */ $artisan->run();