toalett-multiprocessing/src/Tests/Tools/CallableProvider.php

14 lines
234 B
PHP

<?php
namespace Toalett\Multiprocessing\Tests\Tools;
trait CallableProvider
{
protected static function emptyCallable(): callable
{
static $fn = null;
$fn ??= static fn() => null;
return $fn;
}
}