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