File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 2
2
3
3
namespace Native \Laravel ;
4
4
5
- use Illuminate \Console \Application as Artisan ;
5
+ use Illuminate \Console \Application ;
6
6
use Illuminate \Support \Arr ;
7
7
use Illuminate \Support \Facades \DB ;
8
+ use Illuminate \Support \Facades \Artisan ;
8
9
use Native \Laravel \Commands \FreshCommand ;
9
10
use Native \Laravel \Commands \LoadPHPConfigurationCommand ;
10
11
use Native \Laravel \Commands \LoadStartupConfigurationCommand ;
@@ -52,8 +53,8 @@ public function packageRegistered()
52
53
);
53
54
54
55
if (config ('nativephp-internal.running ' )) {
55
- Artisan ::starting (function ($ artisan ) {
56
- $ artisan ->resolveCommands ([
56
+ Application ::starting (function ($ app ) {
57
+ $ app ->resolveCommands ([
57
58
LoadStartupConfigurationCommand::class,
58
59
LoadPHPConfigurationCommand::class,
59
60
]);
You can’t perform that action at this time.
0 commit comments