Skip to content

Commit dc558ae

Browse files
Fix CS/WS issues
1 parent 5eae425 commit dc558ae

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/writing-tests-for-phpunit.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -438,6 +438,7 @@ Output will be more verbose as it'll contain that name of a dataset that breaks
438438
rewind($this->file);
439439
440440
$this->current = fgetcsv($this->file);
441+
441442
if (is_array($row)) {
442443
$row = array_map('intval', $row);
443444
}
@@ -463,6 +464,7 @@ Output will be more verbose as it'll contain that name of a dataset that breaks
463464
public function next(): void
464465
{
465466
$this->current = fgetcsv($this->file);
467+
466468
if (is_array($row)) {
467469
$row = array_map('intval', $row);
468470
}

0 commit comments

Comments
 (0)