bootstrap: Fix error reporting level not including E_STRICT

This commit is contained in:
Eric Lippmann 2014-09-19 13:19:24 +02:00
parent c51b05296e
commit c13823d406
1 changed files with 1 additions and 1 deletions

View File

@ -383,7 +383,7 @@ abstract class ApplicationBootstrap
*/
protected function setupErrorHandling()
{
error_reporting(E_ALL | E_NOTICE);
error_reporting(E_ALL | E_STRICT);
ini_set('display_startup_errors', 1);
ini_set('display_errors', 1);
return $this;