osb/app/Models/Service/Generic.php
2022-04-20 12:43:10 +10:00

25 lines
396 B
PHP

<?php
namespace App\Models\Service;
use App\Models\Base\ServiceType;
// @todo Document how this is used.
class Generic extends ServiceType
{
protected $table = 'service__generic';
public $timestamps = FALSE;
/* INTERFACE */
public function getServiceDescriptionAttribute(): string
{
return 'Generic';
}
public function getServiceNameAttribute(): string
{
return 'Generic';
}
}