mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-14 12:30:49 +08:00
11 lines
202 B
PHP
11 lines
202 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Filament;
|
||
|
|
|
||
|
|
trait NexusOptionsTrait
|
||
|
|
{
|
||
|
|
private static array $matchTypes = ['dec' => 'dec', 'hex' => 'hex'];
|
||
|
|
|
||
|
|
private static array $yesOrNo = ['yes' => 'yes', 'no' => 'no'];
|
||
|
|
}
|