File tree Expand file tree Collapse file tree 3 files changed +3
-6
lines changed
Expand file tree Collapse file tree 3 files changed +3
-6
lines changed Original file line number Diff line number Diff line change 1212namespace CodeIgniter \Database \OCI8 ;
1313
1414use CodeIgniter \Database \BaseConnection ;
15- use CodeIgniter \Database \ConnectionInterface ;
1615use CodeIgniter \Database \Exceptions \DatabaseException ;
1716use CodeIgniter \Database \Query ;
1817use ErrorException ;
2120/**
2221 * Connection for OCI8
2322 */
24- class Connection extends BaseConnection implements ConnectionInterface
23+ class Connection extends BaseConnection
2524{
2625 /**
2726 * Database driver
Original file line number Diff line number Diff line change 1313
1414use BadMethodCallException ;
1515use 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.
Original file line number Diff line number Diff line change 1212namespace CodeIgniter \Database \OCI8 ;
1313
1414use CodeIgniter \Database \BaseResult ;
15- use CodeIgniter \Database \ResultInterface ;
1615use 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.
You can’t perform that action at this time.
0 commit comments