commit | 15be8fc4f1289e464fc716a7ed4a50f647f70211 | [log] [tgz] |
---|---|---|
author | Dan Horrigan <dan@dhorrigan.com> | Sun Aug 21 09:22:49 2011 -0400 |
committer | Dan Horrigan <dan@dhorrigan.com> | Sun Aug 21 09:22:49 2011 -0400 |
tree | 3d5ea5373c69299cff069dc6c25fec25f442540c | |
parent | a0672e1e1f8c5d633a4f0e985e3bcc876862933b [diff] |
Changed the 'development' environment default error reporting to included E_STRICT errors. E_ALL does not include these errors.
diff --git a/index.php b/index.php index f4ac11a..7555158 100644 --- a/index.php +++ b/index.php
@@ -33,7 +33,7 @@ switch (ENVIRONMENT) { case 'development': - error_reporting(E_ALL); + error_reporting(E_ALL | E_STRICT); break; case 'testing':