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

@@ -18,7 +18,7 @@ class TestCase extends Illuminate\Foundation\Testing\TestCase
{
$app = require __DIR__.'/../bootstrap/app.php';
$app->make('Illuminate\Contracts\Console\Kernel')->bootstrap();
$app->make(Illuminate\Contracts\Console\Kernel::class)->bootstrap();
return $app;
}