Skip to content

Commit

Permalink
Fix type hint for Artisan
Browse files Browse the repository at this point in the history
  • Loading branch information
phanan committed Aug 5, 2019
1 parent 2d5e277 commit 074394f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/CreatesApplication.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

namespace Tests;

use App\Console\Kernel;
use App\Models\User;
use Illuminate\Contracts\Console\Kernel as Artisan;
use Illuminate\Foundation\Application;
Expand All @@ -11,7 +12,7 @@ trait CreatesApplication
protected $coverPath;
protected $mediaPath = __DIR__.'/songs';

/** @var Artisan */
/** @var Kernel */
private $artisan;

/**
Expand Down

0 comments on commit 074394f

Please sign in to comment.