Total Complexity | 1 |
Total Lines | 13 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php declare(strict_types=1); |
||
15 | final class NoFactoryFound extends LogicException implements ProxyProductionFailed |
||
16 | { |
||
17 | /** |
||
18 | * Indicates that none of the factories are acceptable given the input data. |
||
19 | * |
||
20 | * @param array $knownData The data that was given. |
||
21 | * @return NoFactoryFound The exception to throw. |
||
22 | */ |
||
23 | public static function forData(array $knownData): self |
||
31 |