| Total Complexity | 2 |
| Total Lines | 36 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 15 | class SQL extends PrefixKeys |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * @var \PDO |
||
| 19 | */ |
||
| 20 | protected $client; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @var string |
||
| 24 | */ |
||
| 25 | protected $table; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @param string $table |
||
| 29 | * @param string $name |
||
| 30 | */ |
||
| 31 | public function __construct(Adapter $cache, \PDO $client, $table, $name) |
||
| 36 | } |
||
| 37 | |||
| 38 | /** |
||
| 39 | * {@inheritdoc} |
||
| 40 | */ |
||
| 41 | public function flush() |
||
| 54 |