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