From: Silvio Rhatto Date: Mon, 27 Mar 2017 18:33:42 +0000 (-0300) Subject: Removes E_STRICT from error_reporting X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=7382b3a86ba9ad9688e9da70c293e2a17d9c8724;p=puppet-php.git Removes E_STRICT from error_reporting --- diff --git a/manifests/defaults.pp b/manifests/defaults.pp index babdb55..a36c9a9 100644 --- a/manifests/defaults.pp +++ b/manifests/defaults.pp @@ -1,6 +1,6 @@ class php::defaults { php::config { - 'error_reporting' : value => 'E_ALL & ~E_NOTICE'; + 'error_reporting' : value => 'E_ALL & ~E_NOTICE & ~E_STRICT'; 'post_max_size' : value => '100M'; 'upload_max_filesize' : value => '100M'; }