Files
nexusphp/app/Filament/OptionsTrait.php
2022-06-29 17:00:15 +08:00

11 lines
197 B
PHP

<?php
namespace App\Filament;
trait OptionsTrait
{
private static array $matchTypes = ['dec' => 'dec', 'hex' => 'hex'];
private static array $yesOrNo = ['yes' => 'yes', 'no' => 'no'];
}