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