12 lines
159 B
PHP
12 lines
159 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Setting\Contracts;
|
||
|
|
||
|
interface Indexable
|
||
|
{
|
||
|
/**
|
||
|
* @return class-string
|
||
|
*/
|
||
|
public static function indexAction(): string;
|
||
|
}
|