daemon-idc/app/Forms/Customer/CustomerForm.php
2026-02-09 18:38:26 +09:00

14 lines
186 B
PHP

<?php
namespace App\Forms\Customer;
use App\Forms\CommonForm;
abstract class CustomerForm extends CommonForm
{
protected function __construct()
{
parent::__construct();
}
}