| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 11 | public static function missingDefinition(string $className, string $method, string $found): self |
||
| 12 | { |
||
| 13 | return new self(" |
||
| 14 | Missing the concrete return type for the method `{$method}()` (Found: `{$found}`). |
||
| 15 | Either fully-qualified or relative namespace are fine. |
||
| 16 | Did you forget to add the namespace as DocBlock for the class? |
||
| 17 | Class -> `{$className}` |
||
| 18 | "); |
||
| 21 |