We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b659e8 commit 252cd49Copy full SHA for 252cd49
2 files changed
tests/system/Models/InsertModelTest.php
@@ -400,7 +400,7 @@ public function testInsertBatchWithCasts(): void
400
];
401
$this->createModel(UserCastsTimestampModel::class);
402
403
- $numRows = $this->model->insertBatch($userData);
+ $numRows = $this->model->insertBatch($userData); // @phpstan-ignore argument.type
404
405
$this->assertSame(2, $numRows);
406
tests/system/Models/UpdateModelTest.php
@@ -636,7 +636,7 @@ public function testUpdateBatchWithCasts(): void
636
],
637
638
639
- $numRows = $this->model->updateBatch($updateData, 'id');
+ $numRows = $this->model->updateBatch($updateData, 'id'); // @phpstan-ignore argument.type
640
641
642
$this->seeInDatabase('user', ['email' => json_encode($updateData[0]['email'])]);
0 commit comments