Files
nexusphp/app/Filament/NexusOptionsTrait.php

11 lines
202 B
PHP
Raw Normal View History

2022-06-27 01:39:01 +08:00
<?php
namespace App\Filament;
trait NexusOptionsTrait
{
private static array $matchTypes = ['dec' => 'dec', 'hex' => 'hex'];
private static array $yesOrNo = ['yes' => 'yes', 'no' => 'no'];
}