bootstrap: Fix error reporting level not including E_STRICT
This commit is contained in:
parent
c51b05296e
commit
c13823d406
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue