for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
*/
declare(strict_types=1);
namespace loophp\combinator\Combinator;
use Closure;
use loophp\combinator\Combinator;
* Class Blackbird.
*
* @template NewAType
* @template NewBType
* @template NewCType
* @template NewDType
* phpcs:disable Generic.Files.LineLength.TooLong
final class Blackbird extends Combinator
{
* @return Closure(callable(NewCType): NewDType): Closure(callable(NewAType): callable(NewBType): NewCType): Closure(NewAType): Closure(NewBType): NewCType
public function __invoke(): Closure
return B::of()(B::of())(B::of());
}