| Total Complexity | 2 |
| Total Lines | 14 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 8 | final class CachedLoggableContextCollectionFactory implements LoggableContextCollectionFactoryInterface |
||
| 9 | { |
||
| 10 | final public const CACHE_KEY = 'loggable_name_collection'; |
||
| 11 | |||
| 12 | public function __construct(private readonly LoggableContextCollectionFactoryInterface $decorated, private readonly CacheInterface $cache) |
||
| 13 | { |
||
| 14 | } |
||
| 15 | |||
| 16 | /** |
||
| 17 | * {@inheritdoc} |
||
| 18 | */ |
||
| 19 | public function create(): LoggableContextCollection |
||
| 22 | } |
||
| 23 | } |
||
| 24 |