Skip to content

Commit 6056e58

Browse files
committed
ITT: Type hinting added.
1 parent 5d48f96 commit 6056e58

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Asserts/DatabaseAsserts.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
trait DatabaseAsserts
66
{
7-
protected function seeInDatabaseMany($table, $rows)
7+
protected function seeInDatabaseMany($table, array $rows)
88
{
99
foreach ($rows as $row) {
1010
$this->seeInDatabase($table, $row);
@@ -13,7 +13,7 @@ protected function seeInDatabaseMany($table, $rows)
1313
return $this;
1414
}
1515

16-
protected function dontSeeInDatabaseMany($table, $rows)
16+
protected function dontSeeInDatabaseMany($table, array $rows)
1717
{
1818
foreach ($rows as $row) {
1919
$this->dontSeeInDatabase($table, $row);

0 commit comments

Comments
 (0)