adrema/app/Setting/Contracts/Storeable.php

14 lines
202 B
PHP
Raw Normal View History

2023-06-01 12:04:31 +02:00
<?php
namespace App\Setting\Contracts;
interface Storeable
{
/**
* @return class-string
*/
public static function storeAction(): string;
2024-08-01 11:32:14 +02:00
public static function url(): string;
2023-06-01 12:04:31 +02:00
}