2019-03-04 16:05:46 +00:00
|
|
|
<?php
|
|
|
|
/** @license MIT
|
|
|
|
* Copyright 2017 J. King, Dustin Wilson et al.
|
|
|
|
* See LICENSE and AUTHORS files for details */
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
2021-04-14 15:17:01 +00:00
|
|
|
|
2019-03-04 16:05:46 +00:00
|
|
|
namespace JKingWeb\Arsse\Db\SQLite3;
|
|
|
|
|
|
|
|
abstract class AbstractPDODriver extends Driver {
|
2019-10-18 20:09:01 +00:00
|
|
|
// this class exists solely so SQLite's PDO driver can call methods of the generic PDO driver via parent::method()
|
|
|
|
// if there's a better way to do this, please FIXME ;)
|
2019-03-04 16:05:46 +00:00
|
|
|
use \JKingWeb\Arsse\Db\PDODriver;
|
2024-12-15 21:31:57 +00:00
|
|
|
|
|
|
|
protected $db;
|
2019-03-04 16:05:46 +00:00
|
|
|
}
|