2020-12-02 10:36:36 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Models\Product;
|
|
|
|
|
|
|
|
use App\Models\Base\ProductType;
|
|
|
|
|
|
|
|
class Generic extends ProductType
|
|
|
|
{
|
2021-12-24 01:14:01 +00:00
|
|
|
public function getContractTermAttribute(): int
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getTypeAttribute()
|
|
|
|
{
|
|
|
|
return 'Generic';
|
|
|
|
}
|
|
|
|
|
|
|
|
public function hasUsage(): bool
|
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
2020-12-02 10:36:36 +00:00
|
|
|
}
|