@@ -13,7 +13,7 @@ echo '> PHP is using the following php.ini file:'.PHP_EOL;
13
13
if ($ iniPath ) {
14
14
echo_style ('green ' , ' ' .$ iniPath );
15
15
} 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! ' );
17
17
}
18
18
19
19
echo PHP_EOL .PHP_EOL ;
@@ -121,10 +121,14 @@ function echo_block($style, $title, $message)
121
121
122
122
echo PHP_EOL .PHP_EOL ;
123
123
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 ;
128
132
}
129
133
130
134
function has_color_support ()
0 commit comments