Skip to content

Commit c18e488

Browse files
committed
Remove unneeded implements
1 parent c4acbfa commit c18e488

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

system/Database/OCI8/Connection.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
namespace CodeIgniter\Database\OCI8;
1313

1414
use CodeIgniter\Database\BaseConnection;
15-
use CodeIgniter\Database\ConnectionInterface;
1615
use CodeIgniter\Database\Exceptions\DatabaseException;
1716
use CodeIgniter\Database\Query;
1817
use ErrorException;
@@ -21,7 +20,7 @@
2120
/**
2221
* Connection for OCI8
2322
*/
24-
class Connection extends BaseConnection implements ConnectionInterface
23+
class Connection extends BaseConnection
2524
{
2625
/**
2726
* Database driver

system/Database/OCI8/PreparedQuery.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,11 @@
1313

1414
use BadMethodCallException;
1515
use CodeIgniter\Database\BasePreparedQuery;
16-
use CodeIgniter\Database\PreparedQueryInterface;
1716

1817
/**
1918
* Prepared query for OCI8
2019
*/
21-
class PreparedQuery extends BasePreparedQuery implements PreparedQueryInterface
20+
class PreparedQuery extends BasePreparedQuery
2221
{
2322
/**
2423
* A reference to the db connection to use.

system/Database/OCI8/Result.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,12 @@
1212
namespace CodeIgniter\Database\OCI8;
1313

1414
use CodeIgniter\Database\BaseResult;
15-
use CodeIgniter\Database\ResultInterface;
1615
use CodeIgniter\Entity\Entity;
1716

1817
/**
1918
* Result for OCI8
2019
*/
21-
class Result extends BaseResult implements ResultInterface
20+
class Result extends BaseResult
2221
{
2322
/**
2423
* Gets the number of fields in the result set.

0 commit comments

Comments
 (0)