From 9f4980ce49054c34635aada1695c4644aabeca8b Mon Sep 17 00:00:00 2001 From: Vladimir Razuvaev Date: Tue, 4 Jul 2017 22:18:55 +0700 Subject: [PATCH] Fix for broken build on PHP < 5.6 --- src/Error/Warning.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Error/Warning.php b/src/Error/Warning.php index 1ebf329..b37abba 100644 --- a/src/Error/Warning.php +++ b/src/Error/Warning.php @@ -7,7 +7,7 @@ final class Warning const ASSIGN_WARNING = 2; const CONFIG_WARNING = 4; - const ALL = self::NAME_WARNING | self::ASSIGN_WARNING | self::CONFIG_WARNING; + const ALL = 7; static $enableWarnings = self::ALL;