diff options
Diffstat (limited to 'app/check.php')
-rw-r--r-- | app/check.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/check.php b/app/check.php index 60ae0a8b..282507f7 100644 --- a/app/check.php +++ b/app/check.php | |||
@@ -80,7 +80,7 @@ function get_error_message(Requirement $requirement, $lineSize) | |||
80 | return; | 80 | return; |
81 | } | 81 | } |
82 | 82 | ||
83 | $errorMessage = wordwrap($requirement->getTestMessage(), $lineSize - 3, PHP_EOL.' ').PHP_EOL; | 83 | $errorMessage = wordwrap($requirement->getTestMessage(), $lineSize - 3, PHP_EOL.' ').PHP_EOL; |
84 | $errorMessage .= ' > '.wordwrap($requirement->getHelpText(), $lineSize - 5, PHP_EOL.' > ').PHP_EOL; | 84 | $errorMessage .= ' > '.wordwrap($requirement->getHelpText(), $lineSize - 5, PHP_EOL.' > ').PHP_EOL; |
85 | 85 | ||
86 | return $errorMessage; | 86 | return $errorMessage; |
@@ -121,8 +121,8 @@ function echo_block($style, $title, $message) | |||
121 | echo PHP_EOL.PHP_EOL; | 121 | echo PHP_EOL.PHP_EOL; |
122 | 122 | ||
123 | echo_style($style, str_repeat(' ', $width).PHP_EOL); | 123 | echo_style($style, str_repeat(' ', $width).PHP_EOL); |
124 | echo_style($style, str_pad(' ['.$title.']', $width, ' ', STR_PAD_RIGHT).PHP_EOL); | 124 | echo_style($style, str_pad(' ['.$title.']', $width, ' ', STR_PAD_RIGHT).PHP_EOL); |
125 | echo_style($style, str_pad($message, $width, ' ', STR_PAD_RIGHT).PHP_EOL); | 125 | echo_style($style, str_pad($message, $width, ' ', STR_PAD_RIGHT).PHP_EOL); |
126 | echo_style($style, str_repeat(' ', $width).PHP_EOL); | 126 | echo_style($style, str_repeat(' ', $width).PHP_EOL); |
127 | } | 127 | } |
128 | 128 | ||