osb/app/Models/Service/Generic.php

23 lines
354 B
PHP
Raw Normal View History

<?php
namespace App\Models\Service;
2022-04-19 07:07:39 +00:00
// @todo Document how this is used.
class Generic extends Type
{
2022-06-14 06:51:18 +00:00
protected $table = 'service_generic';
public $timestamps = FALSE;
2022-04-19 07:07:39 +00:00
/* INTERFACE */
public function getServiceDescriptionAttribute(): string
{
return 'Generic';
}
public function getServiceNameAttribute(): string
{
return 'Generic';
}
}