1234567891011121314151617181920212223242526 |
- <?php
- namespace Symfony\Component\Cache\Simple;
- use Symfony\Component\Cache\PruneableInterface;
- use Symfony\Component\Cache\Traits\FilesystemTrait;
- class FilesystemCache extends AbstractCache implements PruneableInterface
- {
- use FilesystemTrait;
- public function __construct(string $namespace = '', int $defaultLifetime = 0, string $directory = null)
- {
- parent::__construct('', $defaultLifetime);
- $this->init($namespace, $directory);
- }
- }
|