From 3be04fd3b5978d239f08063c32f2243795865f84 Mon Sep 17 00:00:00 2001 From: Jordi Boggiano Date: Sat, 12 May 2012 09:41:15 +0200 Subject: [PATCH] CS fix --- bin/compile | 3 ++- bin/composer | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/bin/compile b/bin/compile index d0dfbbb97..8b1d66c43 100755 --- a/bin/compile +++ b/bin/compile @@ -5,7 +5,8 @@ require __DIR__.'/../src/bootstrap.php'; use Composer\Compiler; -error_reporting(~0); ini_set('display_errors', 1); +error_reporting(-1); +ini_set('display_errors', 1); $compiler = new Compiler(); $compiler->compile(); diff --git a/bin/composer b/bin/composer index 07cc72566..6ffa2c25c 100755 --- a/bin/composer +++ b/bin/composer @@ -5,7 +5,8 @@ require __DIR__.'/../src/bootstrap.php'; use Composer\Console\Application; -error_reporting(~0); ini_set('display_errors', 1); +error_reporting(-1); +ini_set('display_errors', 1); // run the command application $application = new Application();