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