Use the ::class notation

This commit is contained in:
Pantelis Peslis
2015-06-08 10:29:33 +03:00
parent bacda07552
commit 16e37cb370
5 changed files with 10 additions and 10 deletions

View File

@@ -28,7 +28,7 @@ $app = require_once __DIR__.'/bootstrap/app.php';
|
*/
$kernel = $app->make('Illuminate\Contracts\Console\Kernel');
$kernel = $app->make(Illuminate\Contracts\Console\Kernel::class);
$status = $kernel->handle(
$input = new Symfony\Component\Console\Input\ArgvInput,