Skip to content

Commit fbf923c

Browse files
committed
fix cs
1 parent 407e06b commit fbf923c

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

ScriptHandler.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,9 @@ private static function processFile(array $config, IOInterface $io)
6262
$actualValues = array($parameterKey => array());
6363
if ($exists) {
6464
$existingValues = $yamlParser->parse(file_get_contents($realFile));
65-
if ($existingValues === null)
65+
if ($existingValues === null) {
6666
$existingValues = array();
67+
}
6768
if (!is_array($existingValues)) {
6869
throw new \InvalidArgumentException(sprintf('The existing "%s" file does not contain an array', $realFile));
6970
}

0 commit comments

Comments
 (0)