123456789101112131415161718192021 |
- <?php
-
-
-
- namespace Symfony\Component\Cache\Adapter;
-
- @trigger_error(sprintf('The "%s" class is @deprecated since Symfony 4.3, use "Psr16Adapter" instead.', SimpleCacheAdapter::class), \E_USER_DEPRECATED);
-
-
- class SimpleCacheAdapter extends Psr16Adapter
- {
- }
|