We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7437a4a + dc558ae commit 561d082Copy full SHA for 561d082
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