Browse Source

Text files should end with a newline character.

1.0
Andrés Montañez 10 years ago
parent
commit
9653552be7
  1. 1
      Mage/Command/BuiltIn/UpdateCommand.php
  2. 1
      Mage/Command/BuiltIn/VersionCommand.php
  3. 1
      Mage/Task/BuiltIn/Deployment/Strategy/DisabledTask.php
  4. 1
      Mage/Task/BuiltIn/Releases/ListTask.php
  5. 1
      Mage/Task/BuiltIn/Releases/RollbackTask.php
  6. 1
      Mage/Yaml/Parser.php

1
Mage/Command/BuiltIn/UpdateCommand.php

@ -45,5 +45,4 @@ class UpdateCommand extends AbstractCommand
return $exitCode; return $exitCode;
} }
} }

1
Mage/Command/BuiltIn/VersionCommand.php

@ -30,5 +30,4 @@ class VersionCommand extends AbstractCommand
return 0; return 0;
} }
} }

1
Mage/Task/BuiltIn/Deployment/Strategy/DisabledTask.php

@ -38,5 +38,4 @@ class DisabledTask extends AbstractTask implements IsReleaseAware
{ {
throw new SkipException; throw new SkipException;
} }
} }

1
Mage/Task/BuiltIn/Releases/ListTask.php

@ -146,5 +146,4 @@ class ListTask extends AbstractTask implements IsReleaseAware
return $textDiff; return $textDiff;
} }
} }

1
Mage/Task/BuiltIn/Releases/RollbackTask.php

@ -188,5 +188,4 @@ class RollbackTask extends AbstractTask implements IsReleaseAware
return false; return false;
} }
} }
} }

1
Mage/Yaml/Parser.php

@ -655,5 +655,4 @@ class Parser
{ {
return (0 === strpos($this->currentLine, '- ')); return (0 === strpos($this->currentLine, '- '));
} }
} }
Loading…
Cancel
Save