Skip to content

Commit 00057d0

Browse files
authored
fix spaces
1 parent a7692fa commit 00057d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/VarDumper/Caster/PgSqlCaster.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ public static function castResult($result, array $a, Stub $stub, bool $isNested)
138138
$fields = pg_num_fields($result);
139139

140140
for ($i = 0; $i < $fields; ++$i) {
141-
$args = PHP_VERSION_ID < 80300 ? [$result, $i] : [$result, null, $i];
141+
$args = PHP_VERSION_ID < 80300 ? [$result, $i] : [$result, null, $i];
142142
$field = [
143143
'name' => pg_field_name($result, $i),
144144
'table' => sprintf('%s (OID: %s)', pg_field_table($result, $i), pg_field_table($result, $i, true)),

0 commit comments

Comments
 (0)