Skip to content

Commit a149223

Browse files
committed
feature #378 Updated to Symfony 3.1.4 (javiereguiluz)
This PR was merged into the master branch. Discussion ---------- Updated to Symfony 3.1.4 Commits ------- 0e2306f Updated to Symfony 3.1.4
2 parents 9388150 + 0e2306f commit a149223

File tree

4 files changed

+119
-93
lines changed

4 files changed

+119
-93
lines changed

bin/symfony_requirements

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ echo '> PHP is using the following php.ini file:'.PHP_EOL;
1313
if ($iniPath) {
1414
echo_style('green', ' '.$iniPath);
1515
} else {
16-
echo_style('warning', ' WARNING: No configuration file (php.ini) used by PHP!');
16+
echo_style('yellow', ' WARNING: No configuration file (php.ini) used by PHP!');
1717
}
1818

1919
echo PHP_EOL.PHP_EOL;
@@ -121,10 +121,14 @@ function echo_block($style, $title, $message)
121121

122122
echo PHP_EOL.PHP_EOL;
123123

124-
echo_style($style, str_repeat(' ', $width).PHP_EOL);
125-
echo_style($style, str_pad(' ['.$title.']', $width, ' ', STR_PAD_RIGHT).PHP_EOL);
126-
echo_style($style, str_pad($message, $width, ' ', STR_PAD_RIGHT).PHP_EOL);
127-
echo_style($style, str_repeat(' ', $width).PHP_EOL);
124+
echo_style($style, str_repeat(' ', $width));
125+
echo PHP_EOL;
126+
echo_style($style, str_pad(' ['.$title.']', $width, ' ', STR_PAD_RIGHT));
127+
echo PHP_EOL;
128+
echo_style($style, $message);
129+
echo PHP_EOL;
130+
echo_style($style, str_repeat(' ', $width));
131+
echo PHP_EOL;
128132
}
129133

130134
function has_color_support()

0 commit comments

Comments
 (0)