| Total Complexity | 1 |
| Total Lines | 9 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types=1); |
||
| 11 | final class CollectorsMustBeOfTheSameClassException extends InvalidArgumentException |
||
| 12 | { |
||
| 13 | private const MESSAGE = 'Collectors all must be of the same class, but received these instead: %s'; |
||
| 14 | |||
| 15 | public static function fromCollectors(CollectorInterface ...$collectors): CollectorsMustBeOfTheSameClassException |
||
| 22 |