17 lines
291 B
PHP
17 lines
291 B
PHP
<?php
|
|
|
|
namespace App\Entities\Customer;
|
|
|
|
use App\Models\Customer\AccountModel;
|
|
|
|
class AccountEntity extends CustomerEntity
|
|
{
|
|
const PK = AccountModel::PK;
|
|
const TITLE = AccountModel::TITLE;
|
|
|
|
public function getAmount()
|
|
{
|
|
return $this->attributes['amount'];
|
|
}
|
|
}
|