diff options
author | Dan Horrigan <dan@dhorrigan.com> | 2011-08-21 15:22:49 +0200 |
---|---|---|
committer | Dan Horrigan <dan@dhorrigan.com> | 2011-08-21 15:22:49 +0200 |
commit | 15be8fc4f1289e464fc716a7ed4a50f647f70211 (patch) | |
tree | 3d5ea5373c69299cff069dc6c25fec25f442540c | |
parent | a0672e1e1f8c5d633a4f0e985e3bcc876862933b (diff) |
Changed the 'development' environment default error reporting to included E_STRICT errors. E_ALL does not include these errors.
-rw-r--r-- | index.php | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -33,7 +33,7 @@ if (defined('ENVIRONMENT')) switch (ENVIRONMENT) { case 'development': - error_reporting(E_ALL); + error_reporting(E_ALL | E_STRICT); break; case 'testing': |