adrema/app/Setting/Contracts/Viewable.php

12 lines
158 B
PHP
Raw Normal View History

2023-06-01 12:04:31 +02:00
<?php
namespace App\Setting\Contracts;
2024-08-01 10:25:48 +02:00
interface Viewable
2023-06-01 12:04:31 +02:00
{
/**
* @return class-string
*/
public static function indexAction(): string;
}