Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrobocoder <anthon.pang@gmail.com>2009-08-23 18:27:44 +0400
committerrobocoder <anthon.pang@gmail.com>2009-08-23 18:27:44 +0400
commitd8cf9322193bc8d400958732dd5ccdd2a2fcda1e (patch)
treef53ff50dff8dc00c4a82cc17914696be80014357 /core/ErrorHandler.php
parent9f2433a6749f97a42ef9c308593c6323f546965c (diff)
Tweak phpdoc config. Add some missing phpdocs.
git-svn-id: http://dev.piwik.org/svn/trunk@1431 59fd770c-687e-43c8-a1e3-f5a4ff64c105
Diffstat (limited to 'core/ErrorHandler.php')
-rw-r--r--core/ErrorHandler.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/core/ErrorHandler.php b/core/ErrorHandler.php
index e1162972e9..09b5302ecf 100644
--- a/core/ErrorHandler.php
+++ b/core/ErrorHandler.php
@@ -10,8 +10,13 @@
* @package Piwik
*/
+// @since PHP 5
if(!defined('E_STRICT')) { define('E_STRICT', 2048); }
+
+// @since PHP 5.2.0
if(!defined('E_RECOVERABLE_ERROR')) { define('E_RECOVERABLE_ERROR', 4096); }
+
+// @since PHP 5.3.0
if(!defined('E_DEPRECATED')) { define('E_DEPRECATED', 8192); }
if(!defined('E_USER_DEPRECATED')) { define('E_USER_DEPRECATED', 16384); }