17 lines
270 B
PHP
17 lines
270 B
PHP
<?php
|
|
|
|
namespace App\Entities\Device;
|
|
|
|
use App\Models\Device\RackModel;
|
|
|
|
class RackEntity extends DeviceEntity
|
|
{
|
|
const PK = RackModel::PK;
|
|
const TITLE = RackModel::TITLE;
|
|
|
|
public function getAmount()
|
|
{
|
|
return $this->attributes['amount'];
|
|
}
|
|
}
|