Prechádzať zdrojové kódy

Space after ? (so it doesnt glue answer to ?)

Rob Bast 10 rokov pred
rodič
commit
e810a7913e
1 zmenil súbory, kde vykonal 1 pridanie a 1 odobranie
  1. 1 1
      src/Composer/Command/RemoveCommand.php

+ 1 - 1
src/Composer/Command/RemoveCommand.php

@@ -75,7 +75,7 @@ EOT
             } elseif (isset($composer[$altType][$package])) {
                 $this->getIO()->writeError('<warning>'.$package.' could not be found in '.$type.' but it is present in '.$altType.'</warning>');
                 if ($this->getIO()->isInteractive()) {
-                    if ($this->getIO()->askConfirmation('Do you want to remove it from '.$altType.' [<comment>yes</comment>]?', true)) {
+                    if ($this->getIO()->askConfirmation('Do you want to remove it from '.$altType.' [<comment>yes</comment>]? ', true)) {
                         $json->removeLink($altType, $package);
                     }
                 }