mirror of
https://github.com/Dannecron/test-php8-attributes.git
synced 2025-12-25 13:22:34 +03:00
15 lines
199 B
PHP
15 lines
199 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Service;
|
|
|
|
#[\Attribute]
|
|
class CachedJokes
|
|
{
|
|
public function getCacheKey(string $jokeType): string
|
|
{
|
|
return "jokes-{$jokeType}";
|
|
}
|
|
}
|