| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 24 | public function __construct(Throwable $e, Request $request) |
||
| 25 | { |
||
| 26 | $eSummery = sprintf( |
||
| 27 | "%s(%s)\n in file %s on line %s\n\n%s", |
||
| 28 | $e::class, |
||
| 29 | $e->getMessage(), |
||
| 30 | $e->getFile(), |
||
| 31 | $e->getLine(), |
||
| 32 | $e->getTraceAsString(), |
||
| 33 | ); |
||
| 34 | |||
| 35 | /** @var array<string, string> $_SERVER */ //phpcs:ignore SlevomatCodingStandard.Commenting.InlineDocCommentDeclaration.NoAssignment |
||
| 36 | $this->string = sprintf("%s\n%s\n\n%s\n%s\n\n", date(DATE_RFC2822), (string) $request, $eSummery, $this->getPhpVariables($_SERVER)); |
||
| 37 | } |
||
| 51 |
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