| Conditions | 2 |
| Paths | 2 |
| Total Lines | 13 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 43 | public function createApplication() |
||
| 44 | { |
||
| 45 | $app = new Container(); |
||
| 46 | $app->bind('app', 'Illuminate\Container\Container'); |
||
| 47 | |||
| 48 | foreach ($this->PACKAGE_CLASSES as $PACKAGE_CLASS) { |
||
| 49 | $app->bind($PACKAGE_CLASS, $this->VENDOR.'\\'.$this->PACKAGE_NAME.'\\'.$PACKAGE_CLASS); |
||
| 50 | } |
||
| 51 | |||
| 52 | $app->bind('Cache', 'Illuminate\Support\Facades\Cache'); |
||
| 53 | |||
| 54 | $this->app = $app; |
||
| 55 | Facade::setFacadeApplication($app); |
||
| 56 | } |
||
| 80 |
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths