osb/app/Interfaces/ServiceItem.php
2020-02-05 13:47:24 +09:00

20 lines
300 B
PHP

<?php
namespace App\Interfaces;
interface ServiceItem
{
/**
* Return the Service Description.
*
* @return string
*/
public function getServiceDescriptionAttribute():string;
/**
* Return the Service Name.
*
* @return string
*/
public function getServiceNameAttribute():string;
}