mirror of
https://github.com/zoe-may/TDoG-Skin.git
synced 2024-11-24 13:52:19 +08:00
24 lines
435 B
PHP
24 lines
435 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Services\Facades;
|
||
|
|
||
|
use App\Services\OptionForm;
|
||
|
use Illuminate\Support\Facades\Facade;
|
||
|
|
||
|
class Option extends Facade
|
||
|
{
|
||
|
protected static function getFacadeAccessor()
|
||
|
{
|
||
|
return 'options';
|
||
|
}
|
||
|
|
||
|
public static function form(string $id, string $title, $callback): OptionForm
|
||
|
{
|
||
|
$form = new OptionForm($id, $title);
|
||
|
|
||
|
call_user_func($callback, $form);
|
||
|
|
||
|
return $form;
|
||
|
}
|
||
|
}
|