Skip to content

Commit ed2886f

Browse files
committed
Fix code style issues
1 parent 4597c4f commit ed2886f

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

lib/internal/Magento/Framework/App/DeploymentConfig/Writer/PhpFormatter.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,8 @@ private function formatData($data, $comments = [], $prefix = ' ')
7676
* @param integer $depth
7777
* @return string
7878
*/
79-
private function varExportShort($var, $depth=0) {
79+
private function varExportShort($var, $depth = 0)
80+
{
8081
if (gettype($var) === 'array') {
8182
$indexed = array_keys($var) === range(0, count($var) - 1);
8283
$r = [];
@@ -88,6 +89,6 @@ private function varExportShort($var, $depth=0) {
8889
return sprintf("[\n%s\n%s]", implode(",\n", $r), str_repeat(self::INDENT, $depth - 1));
8990
}
9091

91-
return var_export($var, TRUE);
92+
return var_export($var, true);
9293
}
9394
}

0 commit comments

Comments
 (0)