Files
test-php8-attributes/src/Service/CachedJokes.php
2020-12-30 13:12:18 +07:00

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