Skip to content
This repository was archived by the owner on Nov 27, 2020. It is now read-only.

Commit 152e3e9

Browse files
committed
updated VENDORS for 2.8.11
1 parent 6920db7 commit 152e3e9

File tree

3 files changed

+25
-21
lines changed

3 files changed

+25
-21
lines changed

app/SymfonyRequirements.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -689,7 +689,7 @@ function_exists('posix_isatty'),
689689
$this->addRecommendation(
690690
\Symfony\Component\Intl\Intl::getIcuDataVersion() === \Symfony\Component\Intl\Intl::getIcuVersion(),
691691
sprintf('intl ICU version installed on your system (%s) does not match the ICU data bundled with Symfony (%s)', \Symfony\Component\Intl\Intl::getIcuVersion(), \Symfony\Component\Intl\Intl::getIcuDataVersion()),
692-
'To avoid internationalization data incosistencies upgrade the symfony/intl component.'
692+
'To avoid internationalization data inconsistencies upgrade the symfony/intl component.'
693693
);
694694
}
695695
}

app/check.php

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -120,10 +120,14 @@ function echo_block($style, $title, $message)
120120

121121
echo PHP_EOL.PHP_EOL;
122122

123-
echo_style($style, str_repeat(' ', $width).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);
126-
echo_style($style, str_repeat(' ', $width).PHP_EOL);
123+
echo_style($style, str_repeat(' ', $width));
124+
echo PHP_EOL;
125+
echo_style($style, str_pad(' ['.$title.']', $width, ' ', STR_PAD_RIGHT));
126+
echo PHP_EOL;
127+
echo_style($style, $message);
128+
echo PHP_EOL;
129+
echo_style($style, str_repeat(' ', $width));
130+
echo PHP_EOL;
127131
}
128132

129133
function has_color_support()

composer.lock

Lines changed: 16 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)