123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <?php
- namespace Symfony\Component\Cache\Adapter;
- use Doctrine\DBAL\Connection;
- use Symfony\Component\Cache\Exception\InvalidArgumentException;
- use Symfony\Component\Cache\Marshaller\MarshallerInterface;
- 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 = [], MarshallerInterface $marshaller = null)
- {
- $this->init($connOrDsn, $namespace, $defaultLifetime, $options, $marshaller);
- }
- }
|