We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f81eae1 commit 242a4d1Copy full SHA for 242a4d1
1 file changed
tests/system/Database/Live/SQLSRV/IncrementTest.php
@@ -43,7 +43,7 @@ public function testIncrementWhenCastTextToIntFalse(): void
43
{
44
$this->hasInDatabase('job', ['name' => 'incremental', 'created_at' => 6]);
45
46
- $this->assertTrue($this->db->table('job') instanceof Builder);
+ $this->assertInstanceOf(Builder::class, $this->db->table('job'));
47
48
$this->db->table('job')->castTextToInt = false;
49
@@ -58,7 +58,7 @@ public function testDecrementWhenCastTextToIntFalse(): void
58
59
$this->hasInDatabase('job', ['name' => 'decremental', 'created_at' => 6]);
60
61
62
63
64
0 commit comments