diff options
author | Andrey Andreev <narf@devilix.net> | 2018-03-22 15:48:55 +0100 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2018-03-22 15:48:55 +0100 |
commit | 71e647782764184e3aab4faffe6d99176758979f (patch) | |
tree | 74dbdd50a61cd5674915c144aca9ebbc00b235b8 /tests/mocks/database/drivers | |
parent | b12fbad77bd69ca0c7624a9094c29b7691ea6107 (diff) |
[ci skip] 3.1.8 release
Diffstat (limited to 'tests/mocks/database/drivers')
-rw-r--r-- | tests/mocks/database/drivers/mysql.php | 16 | ||||
-rw-r--r-- | tests/mocks/database/drivers/mysqli.php | 16 | ||||
-rw-r--r-- | tests/mocks/database/drivers/pdo.php | 15 | ||||
-rw-r--r-- | tests/mocks/database/drivers/postgre.php | 16 | ||||
-rw-r--r-- | tests/mocks/database/drivers/sqlite.php | 16 |
5 files changed, 0 insertions, 79 deletions
diff --git a/tests/mocks/database/drivers/mysql.php b/tests/mocks/database/drivers/mysql.php deleted file mode 100644 index b7718ebaf..000000000 --- a/tests/mocks/database/drivers/mysql.php +++ /dev/null @@ -1,16 +0,0 @@ -<?php - -class Mock_Database_Drivers_Mysql extends Mock_Database_DB_Driver { - - /** - * Instantiate the database driver - * - * @param array DB configuration to set - * @return void - */ - public function __construct($config = array()) - { - parent::__construct('CI_DB_mysql_driver', $config); - } - -}
\ No newline at end of file diff --git a/tests/mocks/database/drivers/mysqli.php b/tests/mocks/database/drivers/mysqli.php deleted file mode 100644 index f747aad46..000000000 --- a/tests/mocks/database/drivers/mysqli.php +++ /dev/null @@ -1,16 +0,0 @@ -<?php - -class Mock_Database_Drivers_Mysqli extends Mock_Database_DB_Driver { - - /** - * Instantiate the database driver - * - * @param array DB configuration to set - * @return void - */ - public function __construct($config = array()) - { - parent::__construct('CI_DB_mysqli_driver', $config); - } - -}
\ No newline at end of file diff --git a/tests/mocks/database/drivers/pdo.php b/tests/mocks/database/drivers/pdo.php deleted file mode 100644 index af1958aea..000000000 --- a/tests/mocks/database/drivers/pdo.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -class Mock_Database_Drivers_PDO extends Mock_Database_DB_Driver { - - /** - * Instantiate the database driver - * - * @param array DB configuration to set - * @return void - */ - public function __construct($config = array()) - { - parent::__construct('CI_DB_pdo_driver', $config); - } -}
\ No newline at end of file diff --git a/tests/mocks/database/drivers/postgre.php b/tests/mocks/database/drivers/postgre.php deleted file mode 100644 index 8c91e54a9..000000000 --- a/tests/mocks/database/drivers/postgre.php +++ /dev/null @@ -1,16 +0,0 @@ -<?php - -class Mock_Database_Drivers_Postgre extends Mock_Database_DB_Driver { - - /** - * Instantiate the database driver - * - * @param array DB configuration to set - * @return void - */ - public function __construct($config = array()) - { - parent::__construct('CI_DB_postgre_driver', $config); - } - -}
\ No newline at end of file diff --git a/tests/mocks/database/drivers/sqlite.php b/tests/mocks/database/drivers/sqlite.php deleted file mode 100644 index b2aec28e6..000000000 --- a/tests/mocks/database/drivers/sqlite.php +++ /dev/null @@ -1,16 +0,0 @@ -<?php - -class Mock_Database_Drivers_Sqlite extends Mock_Database_DB_Driver { - - /** - * Instantiate the database driver - * - * @param array DB configuration to set - * @return void - */ - public function __construct($config = array()) - { - parent::__construct('CI_DB_sqlite3_driver', $config); - } - -}
\ No newline at end of file |