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
|
|
|
}
|