11 lines
132 B
PHP
11 lines
132 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Services;
|
|
|
|
interface CacheKeyInterface
|
|
{
|
|
public function toCacheKey(): string;
|
|
}
|