123456789101112131415161718192021222324252627 |
- <?php
- namespace Symfony\Component\Cache\Adapter;
- use Symfony\Component\Cache\Traits\ApcuTrait;
- class ApcuAdapter extends AbstractAdapter
- {
- use ApcuTrait;
-
- public function __construct(string $namespace = '', int $defaultLifetime = 0, string $version = null)
- {
- $this->init($namespace, $defaultLifetime, $version);
- }
- }
|