1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <?php
- namespace Symfony\Component\Cache\Adapter;
- use Doctrine\DBAL\Connection;
- use Symfony\Component\Cache\Exception\InvalidArgumentException;
- use Symfony\Component\Cache\PruneableInterface;
- use Symfony\Component\Cache\Traits\PdoTrait;
- class PdoAdapter extends AbstractAdapter implements PruneableInterface
- {
- use PdoTrait;
- protected $maxIdLength = 255;
-
- public function __construct($connOrDsn, string $namespace = '', int $defaultLifetime = 0, array $options = [])
- {
- $this->init($connOrDsn, $namespace, $defaultLifetime, $options);
- }
- }
|