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