Files
pest/src/Support/NullClosure.php
T
2026-08-07 14:52:56 +01:00

19 lines
238 B
PHP

<?php
declare(strict_types=1);
namespace Pest\Support;
use Closure;
/**
* @internal
*/
final class NullClosure
{
public static function create(): Closure
{
return Closure::fromCallable(function (): void {});
}
}