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