dbmsv4/app/Forms/Part/DISKForm.php
2025-11-19 11:16:04 +09:00

21 lines
344 B
PHP

<?php
namespace App\Forms\Part;
class DISKForm extends PartForm
{
public function __construct()
{
parent::__construct();
}
public function getFormRule(string $action, string $field): string
{
switch ($field) {
default:
$rule = parent::getFormRule($action, $field);
break;
}
return $rule;
}
}