2020-12-02 10:36:36 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Models\Service;
|
|
|
|
|
2022-04-19 07:07:39 +00:00
|
|
|
// @todo Document how this is used.
|
2022-04-22 01:47:46 +00:00
|
|
|
class Generic extends Type
|
2020-12-02 10:36:36 +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';
|
|
|
|
}
|
2020-12-02 10:36:36 +00:00
|
|
|
}
|