1
0
Fork 0

Close style tags to avoid bleed (#11972)

pull/11974/head
Dan Wallis 2024-05-12 21:55:40 +01:00 committed by GitHub
parent 829e0e767f
commit ede152bd65
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -96,7 +96,7 @@ trait PackageDiscoveryTrait
foreach ($requires as $requirement) { foreach ($requires as $requirement) {
if (isset($requirement['version']) && Preg::isMatch('{^\d+(\.\d+)?$}', $requirement['version'])) { if (isset($requirement['version']) && Preg::isMatch('{^\d+(\.\d+)?$}', $requirement['version'])) {
$io->writeError('<warning>The "'.$requirement['version'].'" constraint for "'.$requirement['name'].'" appears too strict and will likely not match what you want. See https://getcomposer.org/constraints'); $io->writeError('<warning>The "'.$requirement['version'].'" constraint for "'.$requirement['name'].'" appears too strict and will likely not match what you want. See https://getcomposer.org/constraints</warning>');
} }
if (!isset($requirement['version'])) { if (!isset($requirement['version'])) {

View File

@ -404,7 +404,7 @@ class Application extends BaseApplication
} }
if (isset($startTime)) { if (isset($startTime)) {
$io->writeError('<info>Memory usage: '.round(memory_get_usage() / 1024 / 1024, 2).'MiB (peak: '.round(memory_get_peak_usage() / 1024 / 1024, 2).'MiB), time: '.round(microtime(true) - $startTime, 2).'s'); $io->writeError('<info>Memory usage: '.round(memory_get_usage() / 1024 / 1024, 2).'MiB (peak: '.round(memory_get_peak_usage() / 1024 / 1024, 2).'MiB), time: '.round(microtime(true) - $startTime, 2).'s</info>');
} }
if ($proxyManager->needsTransitionWarning()) { if ($proxyManager->needsTransitionWarning()) {