mirror of
https://github.com/pestphp/pest.git
synced 2026-03-05 23:37:22 +01:00
42 lines
1.2 KiB
PHP
42 lines
1.2 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Pest\Support;
|
|
|
|
use Closure;
|
|
use Pest\Exceptions\ShouldNotHappen;
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
final class ChainableClosure
|
|
{
|
|
/**
|
|
* Calls the given `$closure` and chains the `$next` closure.
|
|
*/
|
|
public static function from(Closure $closure, Closure $next): Closure
|
|
{
|
|
return function () use ($closure, $next): void {
|
|
if (! is_object($this)) { // @phpstan-ignore-line
|
|
throw ShouldNotHappen::fromMessage('$this not bound to chainable closure.');
|
|
}
|
|
|
|
call_user_func_array(Closure::bind($closure, $this, $this::class), func_get_args());
|
|
call_user_func_array(Closure::bind($next, $this, $this::class), func_get_args());
|
|
};
|
|
}
|
|
|
|
/**
|
|
* Call the given static `$closure` and chains the `$next` closure.
|
|
*/
|
|
public static function fromStatic(Closure $closure, Closure $next): Closure
|
|
{
|
|
return static function () use ($closure, $next): void {
|
|
call_user_func_array(Closure::bind($closure, null, self::class), func_get_args());
|
|
call_user_func_array(Closure::bind($next, null, self::class), func_get_args());
|
|
};
|
|
}
|
|
}
|