| Total Complexity | 3 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 21 | final class AreOfList implements Specifies |
||
| 22 | { |
||
| 23 | use Specifying; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * Produces a condition that accepts list type input. |
||
| 27 | * |
||
| 28 | * @return Specifies The type enforcing condition. |
||
| 29 | */ |
||
| 30 | public static function type(): Specifies |
||
| 31 | { |
||
| 32 | return new self(); |
||
| 33 | } |
||
| 34 | |||
| 35 | /** @inheritdoc */ |
||
| 36 | public function isSatisfiedBy($input): bool |
||
| 40 | } |
||
| 41 | } |
||
| 42 |