| Total Complexity | 4 |
| Total Lines | 29 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 8 | final class Stringifier implements Extractor |
||
| 9 | { |
||
| 10 | private $next; |
||
| 11 | private $condition; |
||
| 12 | |||
| 13 | private function __construct(Extractor $next, Satisfiable $condition) |
||
| 14 | { |
||
| 15 | $this->next = $next; |
||
| 16 | $this->condition = $condition; |
||
| 17 | } |
||
| 18 | |||
| 19 | public static function withCondition( |
||
| 24 | } |
||
| 25 | |||
| 26 | public function extract( |
||
| 39 |