Text files should end with a newline character.

This commit is contained in:
Andrés Montañez 2014-10-11 15:07:36 -02:00
parent aaf92d5001
commit 9653552be7
41 changed files with 41 additions and 47 deletions

2
.gitignore vendored
View file

@ -6,4 +6,4 @@ mage.phar
.DS_Store*
ehthumbs.db
Icon?
Thumbs.db
Thumbs.db

View file

@ -24,4 +24,4 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
--------
The Yaml Library Parser is (c) by Fabien Potencier, and belongs to the Symfony Proyect
--------
--------

View file

@ -16,4 +16,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
THE SOFTWARE.

View file

@ -52,4 +52,4 @@ abstract class AbstractCommand
{
return $this->config;
}
}
}

View file

@ -122,4 +122,4 @@ class InstallCommand extends AbstractCommand
return false;
}
}
}
}

View file

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

View file

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

View file

@ -59,4 +59,4 @@ class Factory
return $instance;
}
}
}

View file

@ -17,4 +17,4 @@ namespace Mage\Command;
*/
interface RequiresEnvironment
{
}
}

View file

@ -86,4 +86,4 @@ class Mailer
mail($this->address, $subject, $message, $headers);
}
}
}

View file

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

View file

@ -39,4 +39,4 @@ class ClearCacheTask extends AbstractTask
return $result;
}
}
}

View file

@ -39,4 +39,4 @@ class ClearFullPageCacheTask extends AbstractTask
return $result;
}
}
}

View file

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

View file

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

View file

@ -105,4 +105,4 @@ class ChangeBranchTask extends AbstractTask
return $result;
}
}
}

View file

@ -84,4 +84,4 @@ class CloneTask extends AbstractTask
return $result;
}
}
}

View file

@ -58,4 +58,4 @@ class RemoveCloneTask extends AbstractTask
{
return $this->runCommandLocal('rm -rf ' . $this->source['temporal']);
}
}
}

View file

@ -69,4 +69,4 @@ class UpdateTask extends AbstractTask
return $result;
}
}
}

View file

@ -42,4 +42,4 @@ class AsseticDumpTask extends SymfonyAbstractTask
return $result;
}
}
}

View file

@ -49,4 +49,4 @@ class AssetsInstallTask extends SymfonyAbstractTask
return $result;
}
}
}

View file

@ -42,4 +42,4 @@ class CacheClearTask extends SymfonyAbstractTask
return $result;
}
}
}

View file

@ -29,4 +29,4 @@ abstract class SymfonyAbstractTask extends AbstractTask
return $this->getConfig()->general('symfony_app_path', $defaultAppPath);
}
}
}

View file

@ -19,4 +19,4 @@ use Exception;
*/
class SkipException extends Exception
{
}
}

View file

@ -72,4 +72,4 @@ class Dumper
return $output;
}
}
}

View file

@ -86,4 +86,4 @@ class Escaper
{
return sprintf("'%s'", str_replace('\'', '\'\'', $value));
}
}
}

View file

@ -22,4 +22,4 @@ use Mage\Yaml\Exception\RuntimeException;
*/
class DumpException extends RuntimeException
{
}
}

View file

@ -20,4 +20,4 @@ namespace Mage\Yaml\Exception;
*/
interface ExceptionInterface
{
}
}

View file

@ -147,4 +147,4 @@ class ParseException extends RuntimeException
$this->message .= '.';
}
}
}
}

View file

@ -22,4 +22,4 @@ use Mage\Yaml\Exception\ExceptionInterface;
*/
class RuntimeException extends \RuntimeException implements ExceptionInterface
{
}
}

View file

@ -502,4 +502,4 @@ class Inline
$~x
EOF;
}
}
}

View file

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

View file

@ -139,4 +139,4 @@ class Unescaper
return chr(0xF0 | $c >> 18) . chr(0x80 | $c >> 12 & 0x3F) . chr(0x80 | $c >> 6 & 0x3F) . chr(0x80 | $c & 0x3F);
}
}
}

View file

@ -99,4 +99,4 @@ class Yaml
return $yaml->dump($array, $inline, 0, $exceptionOnInvalidType, $objectSupport);
}
}
}

View file

@ -34,4 +34,4 @@ tasks:
- privileges
- sampleTask
- sampleTaskRollbackAware
#post-deploy:
#post-deploy:

View file

@ -5,4 +5,4 @@ notifications: true
logging: true
scm:
type: git
url: git://github.com/andres-montanez/Zend-Framework-Twig-example-app.git
url: git://github.com/andres-montanez/Zend-Framework-Twig-example-app.git

View file

@ -1 +1 @@
log-*
log-*

View file

@ -14,4 +14,4 @@ class FailTask extends AbstractTask
{
return false;
}
}
}

View file

@ -17,4 +17,4 @@ class Privileges extends AbstractTask
return $result;
}
}
}

View file

@ -19,4 +19,4 @@ class SampleTaskRollbackAware extends AbstractTask implements RollbackAware
{
return true;
}
}
}

View file

@ -24,4 +24,4 @@ class TaskWithParameters extends AbstractTask
return false;
}
}
}
}