Commit 16e37cb3 authored by Pantelis Peslis's avatar Pantelis Peslis

Use the ::class notation

parent bacda075
...@@ -28,7 +28,7 @@ $app = require_once __DIR__.'/bootstrap/app.php'; ...@@ -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( $status = $kernel->handle(
$input = new Symfony\Component\Console\Input\ArgvInput, $input = new Symfony\Component\Console\Input\ArgvInput,
......
...@@ -27,18 +27,18 @@ $app = new Illuminate\Foundation\Application( ...@@ -27,18 +27,18 @@ $app = new Illuminate\Foundation\Application(
*/ */
$app->singleton( $app->singleton(
'Illuminate\Contracts\Http\Kernel', Illuminate\Contracts\Http\Kernel::class,
'App\Http\Kernel' App\Http\Kernel::class
); );
$app->singleton( $app->singleton(
'Illuminate\Contracts\Console\Kernel', Illuminate\Contracts\Console\Kernel::class,
'App\Console\Kernel' App\Console\Kernel::class
); );
$app->singleton( $app->singleton(
'Illuminate\Contracts\Debug\ExceptionHandler', Illuminate\Contracts\Debug\ExceptionHandler::class,
'App\Exceptions\Handler' App\Exceptions\Handler::class
); );
/* /*
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
| |
*/ */
$factory->define('App\User', function ($faker) { $factory->define(App\User::class, function ($faker) {
return [ return [
'name' => $faker->name, 'name' => $faker->name,
'email' => $faker->email, 'email' => $faker->email,
......
...@@ -47,7 +47,7 @@ $app = require_once __DIR__.'/../bootstrap/app.php'; ...@@ -47,7 +47,7 @@ $app = require_once __DIR__.'/../bootstrap/app.php';
| |
*/ */
$kernel = $app->make('Illuminate\Contracts\Http\Kernel'); $kernel = $app->make(Illuminate\Contracts\Http\Kernel::class);
$response = $kernel->handle( $response = $kernel->handle(
$request = Illuminate\Http\Request::capture() $request = Illuminate\Http\Request::capture()
......
...@@ -18,7 +18,7 @@ class TestCase extends Illuminate\Foundation\Testing\TestCase ...@@ -18,7 +18,7 @@ class TestCase extends Illuminate\Foundation\Testing\TestCase
{ {
$app = require __DIR__.'/../bootstrap/app.php'; $app = require __DIR__.'/../bootstrap/app.php';
$app->make('Illuminate\Contracts\Console\Kernel')->bootstrap(); $app->make(Illuminate\Contracts\Console\Kernel::class)->bootstrap();
return $app; return $app;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment