@@ -45,7 +45,7 @@ |
||
| 45 | 45 | /** |
| 46 | 46 | * Get the services provided by the provider. |
| 47 | 47 | * |
| 48 | - * @return array |
|
| 48 | + * @return string[] |
|
| 49 | 49 | */ |
| 50 | 50 | public function provides() |
| 51 | 51 | { |
@@ -32,7 +32,7 @@ |
||
| 32 | 32 | */ |
| 33 | 33 | public function register() |
| 34 | 34 | { |
| 35 | - if ($this->app->runningInConsole()) { |
|
| 35 | + if ($this->app->runningInConsole()) { |
|
| 36 | 36 | $this->commands([ |
| 37 | 37 | TailCommand::class, |
| 38 | 38 | ]); |
@@ -93,7 +93,7 @@ |
||
| 93 | 93 | { |
| 94 | 94 | $output = $this->output; |
| 95 | 95 | |
| 96 | - (new Process($command))->setTimeout(null)->run(function ($type, $line) use ($output) { |
|
| 96 | + (new Process($command))->setTimeout(null)->run(function($type, $line) use ($output) { |
|
| 97 | 97 | $output->write($line); |
| 98 | 98 | }); |
| 99 | 99 | } |