| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 1 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 11 | 3 | public static function missingDefinition(string $className, string $method, string $found): self |
|
| 12 | { |
||
| 13 | 3 | $suggestions = self::getSuggestions($method); |
|
| 14 | 3 | ||
| 15 | return new self(" |
||
| 16 | Missing the concrete return type for the method `{$method}()` (Found: `{$found}`). |
||
| 17 | 3 | ||
| 18 | 3 | Class: `{$className}` |
|
| 19 | |||
| 20 | Possible solutions: |
||
| 21 | {$suggestions} |
||
| 22 | |||
| 69 |