24 lines
297 B
PHP
24 lines
297 B
PHP
<?php
|
|
|
|
namespace App\Models\Product;
|
|
|
|
use App\Models\Base\ProductType;
|
|
|
|
class Generic extends ProductType
|
|
{
|
|
public function getContractTermAttribute(): int
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
public function getTypeAttribute()
|
|
{
|
|
return 'Generic';
|
|
}
|
|
|
|
public function hasUsage(): bool
|
|
{
|
|
return FALSE;
|
|
}
|
|
}
|