Skip to content

Commit 7961c44

Browse files
committed
fix for Lumen
1 parent 62135a3 commit 7961c44

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/CommandRunner.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
use Illuminate\Console\Command;
66
use Illuminate\Console\OutputStyle;
7-
use Illuminate\Contracts\Foundation\Application;
7+
use Illuminate\Container\Container;
88
use Illuminate\Support\Str;
99
use Illuminate\Support\Collection;
1010
use Illuminate\Filesystem\Filesystem;
@@ -16,7 +16,7 @@ class CommandRunner
1616
/**
1717
* The Laravel application instance.
1818
*
19-
* @var Application
19+
* @var Container
2020
*/
2121
protected $laravel;
2222

@@ -65,13 +65,13 @@ class CommandRunner
6565
/**
6666
* Create a new migrator instance.
6767
*
68-
* @param Application $laravel
68+
* @param Container $laravel
6969
* @param DatabaseMigrationRepository $repository
7070
* @param \Illuminate\Database\ConnectionResolverInterface $resolver
7171
* @param \Illuminate\Filesystem\Filesystem $files
7272
*/
7373
public function __construct(
74-
Application $laravel,
74+
Container $laravel,
7575
DatabaseMigrationRepository $repository,
7676
Resolver $resolver,
7777
Filesystem $files)

0 commit comments

Comments
 (0)