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