Skip to content

Commit bd17c8f

Browse files
committed
fix: MockResult::dataSeek() return type
1 parent 372435d commit bd17c8f

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

system/Database/OCI8/Result.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313

1414
use CodeIgniter\Database\BaseResult;
1515
use CodeIgniter\Entity\Entity;
16+
use stdClass;
1617

1718
/**
1819
* Result for OCI8

system/Test/Mock/MockResult.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ public function freeResult()
6363
*/
6464
public function dataSeek($n = 0)
6565
{
66+
return true;
6667
}
6768

6869
/**

0 commit comments

Comments
 (0)