mirror of
https://github.com/pestphp/pest.git
synced 2026-09-05 14:23:34 +02:00
17 lines
237 B
PHP
17 lines
237 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Pest\Configuration;
|
|
|
|
use Closure;
|
|
use Pest\Preset;
|
|
|
|
final class Presets
|
|
{
|
|
public function custom(string $name, Closure $execute): void
|
|
{
|
|
Preset::custom($name, $execute);
|
|
}
|
|
}
|