Skip to content

Commit

Permalink
Fix deprecation notice (#10921)
Browse files Browse the repository at this point in the history
Deprecation Notice: trim(): Passing null to parameter #1 ($string) of type string is deprecated in phar:///usr/bin/composer/src/Composer/Util/GitHub.php:103
  • Loading branch information
fluffycondor committed Jul 5, 2022
1 parent 92e1c26 commit 3ebd66b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Composer/Util/GitHub.php
Expand Up @@ -101,9 +101,9 @@ public function authorizeOAuthInteractively($originUrl, $message = null)
$this->io->writeError(sprintf('Tokens will be stored in plain text in "%s" for future use by Composer.', $this->config->getAuthConfigSource()->getName()));
$this->io->writeError('For additional information, check https://getcomposer.org/doc/articles/authentication-for-private-packages.md#github-oauth');

$token = trim($this->io->askAndHideAnswer('Token (hidden): '));
$token = trim((string) $this->io->askAndHideAnswer('Token (hidden): '));

if (!$token) {
if ($token === '') {
$this->io->writeError('<warning>No token given, aborting.</warning>');
$this->io->writeError('You can also add it manually later by using "composer config --global --auth github-oauth.github.com <token>"');

Expand Down

0 comments on commit 3ebd66b

Please sign in to comment.