| Conditions | 2 |
| Paths | 2 |
| Total Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 17 | public function handle(ErrorPrinter $errorPrinter) |
||
| 18 | { |
||
| 19 | $this->info('Scanning for Empty Provider Files'); |
||
| 20 | $errorPrinter->printer = $this->output; |
||
| 21 | |||
| 22 | $autoload = ComposerJson::readAutoload(); |
||
| 23 | |||
| 24 | foreach ($autoload as $psr4Namespace => $psr4Path) { |
||
| 25 | $files = FilePath::getAllPhpFiles($psr4Path); |
||
| 26 | GenerateCode::serviceProvider($files, $psr4Path, $psr4Namespace, $this); |
||
|
|
|||
| 27 | } |
||
| 28 | } |
||
| 29 | } |
||
| 30 |
It seems like the type of the argument is not accepted by the function/method which you are calling.
In some cases, in particular if PHP’s automatic type-juggling kicks in this might be fine. In other cases, however this might be a bug.
We suggest to add an explicit type cast like in the following example: