Files
monica/app/Interfaces/ServiceInterface.php
2021-12-04 18:26:14 -05:00

17 lines
294 B
PHP

<?php
namespace App\Interfaces;
interface ServiceInterface
{
/**
* Define what the rules for the service should be.
*/
public function rules(): array;
/**
* Define what the permissions for the service should be.
*/
public function permissions(): array;
}