We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 36f0d46 + 561d082 commit c02306cCopy full SHA for c02306c
src/writing-tests-for-phpunit.rst
@@ -438,6 +438,11 @@ 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
+
442
+ if (is_array($row)) {
443
+ $row = array_map('intval', $row);
444
+ }
445
446
$this->key = 0;
447
}
448
@@ -460,6 +465,10 @@ Output will be more verbose as it'll contain that name of a dataset that breaks
460
465
{
461
466
462
467
468
469
470
471
463
472
$this->key++;
464
473
474
0 commit comments