osb/app/Interfaces/ServiceItem.php

27 lines
403 B
PHP
Raw Normal View History

2020-02-05 04:47:24 +00:00
<?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;
2020-02-19 12:37:45 +00:00
/**
* Is this service in a contract
*
* @return bool
*/
public function inContract(): bool;
2020-02-05 04:47:24 +00:00
}