1616use DragonCode \Support \Facades \Helpers \Arr ;
1717use DragonCode \Support \Facades \Helpers \Str ;
1818use DragonCode \Support \Filesystem \File ;
19- use Illuminate \Console \OutputStyle ;
2019use Illuminate \Contracts \Events \Dispatcher ;
2120use Symfony \Component \Console \Input \InputInterface ;
21+ use Symfony \Component \Console \Output \OutputInterface ;
2222
2323abstract class Processor
2424{
@@ -29,7 +29,7 @@ abstract public function handle(): void;
2929 public function __construct (
3030 protected Options $ options ,
3131 protected InputInterface $ input ,
32- protected OutputStyle $ output ,
32+ protected OutputInterface $ output ,
3333 protected Config $ config ,
3434 protected ActionRepository $ repository ,
3535 protected Git $ git ,
@@ -57,7 +57,7 @@ protected function getFiles(string $path, ?Closure $filter = null): array
5757
5858 protected function runCommand (string $ command , array $ options = []): void
5959 {
60- $ this ->artisan ($ command , array_filter ($ options ));
60+ $ this ->artisan ($ command , array_filter ($ options ), $ this -> output );
6161 }
6262
6363 protected function tableNotFound (): bool
0 commit comments