| Total Complexity | 3 |
| Total Lines | 32 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | final class I extends Combinator |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * @var mixed |
||
| 16 | */ |
||
| 17 | private $x; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * I constructor. |
||
| 21 | * |
||
| 22 | * @param mixed $x |
||
| 23 | */ |
||
| 24 | 1 | public function __construct($x) |
|
| 25 | { |
||
| 26 | 1 | $this->x = $x; |
|
| 27 | 1 | } |
|
| 28 | |||
| 29 | /** |
||
| 30 | * @return mixed |
||
| 31 | */ |
||
| 32 | 1 | public function __invoke() |
|
| 35 | } |
||
| 36 | |||
| 37 | /** |
||
| 38 | * @return callable |
||
| 39 | */ |
||
| 40 | 1 | public static function closure(): callable |
|
| 47 |