We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9cd3180 commit 5eae425Copy full SHA for 5eae425
src/writing-tests-for-phpunit.rst
@@ -438,6 +438,10 @@ Output will be more verbose as it'll contain that name of a dataset that breaks
438
rewind($this->file);
439
440
$this->current = fgetcsv($this->file);
441
+ if (is_array($row)) {
442
+ $row = array_map('intval', $row);
443
+ }
444
+
445
$this->key = 0;
446
}
447
@@ -459,6 +463,9 @@ Output will be more verbose as it'll contain that name of a dataset that breaks
459
463
public function next(): void
460
464
{
461
465
466
467
468
462
469
470
$this->key++;
471
0 commit comments