Browse Source

[Nostromo] PSR2

pull/1/head
Andrés Montañez 8 years ago
parent
commit
3495b36cfd
  1. 1
      src/Mage/MageApplication.php
  2. 3
      src/Mage/Tests/MageApplicationTest.php

1
src/Mage/MageApplication.php

@ -79,7 +79,6 @@ class MageApplication extends Application
$this->runtime->setLogger($logger); $this->runtime->setLogger($logger);
$this->loadBuiltInCommands(); $this->loadBuiltInCommands();
} else { } else {
throw new RuntimeException(sprintf('The file "%s" does not have a valid Magallanes configuration.', $file)); throw new RuntimeException(sprintf('The file "%s" does not have a valid Magallanes configuration.', $file));
} }

3
src/Mage/Tests/MageApplicationTest.php

@ -45,5 +45,4 @@ class MageApplicationTest extends TestCase
$this->assertEquals(sprintf('The file "%s" does not exists or is not readable.', __DIR__ . '/Resources/this-does-not-exists.yml'), $exception->getMessage()); $this->assertEquals(sprintf('The file "%s" does not exists or is not readable.', __DIR__ . '/Resources/this-does-not-exists.yml'), $exception->getMessage());
} }
} }
}
}

Loading…
Cancel
Save