Skip to content

Commit

Permalink
add indent to array close
Browse files Browse the repository at this point in the history
  • Loading branch information
TomK committed Jan 18, 2021
1 parent 00dc330 commit fb56e56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Catalog/DynamicArrayCatalog.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public function asPhpFile($withNewLines = false): string
$content[] = $indent . $indent
. "'" . addcslashes(stripslashes($optK), "'") . "' => '" . addcslashes(stripslashes($useText), "'") . "',";
}
$content[] = '],';
$content[] = $indent . '],';
}
$content[] = '];';
return implode($implode, $content) . PHP_EOL;
Expand Down

0 comments on commit fb56e56

Please sign in to comment.