15 lines
220 B
PHP
15 lines
220 B
PHP
<?php
|
|
|
|
namespace App\Models\Customer\Wallet;
|
|
|
|
use App\Models\Customer\CustomerModel;
|
|
|
|
|
|
abstract class WalletModel extends CustomerModel
|
|
{
|
|
protected function __construct()
|
|
{
|
|
parent::__construct();
|
|
}
|
|
}
|