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