| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 18 | public static function fromMissingSignature(ReflectionClass $class, array $parameters, string $expected) : self |
||
| 19 | 1 | { |
|
| 20 | return new self(sprintf( |
||
| 21 | 1 | 'No signature found for class "%s", expected signature "%s" for %d parameters', |
|
| 22 | 1 | $class->getName(), |
|
| 23 | 1 | $expected, |
|
| 24 | 1 | count($parameters) |
|
| 25 | 1 | )); |
|
| 26 | } |
||
| 27 | } |
||
| 28 |