Yaffs site version 1.1
[yaffs-website] / vendor / symfony / http-foundation / Session / Storage / Proxy / AbstractProxy.php
index 463677b55acfe97c3af71c756aabe2f61cd32b06..405e60b2fdfb347e116eaa6efb0f1cd74df8f159 100644 (file)
@@ -72,7 +72,7 @@ abstract class AbstractProxy
      */
     public function isActive()
     {
-        if (PHP_VERSION_ID >= 50400) {
+        if (\PHP_VERSION_ID >= 50400) {
             return $this->active = \PHP_SESSION_ACTIVE === session_status();
         }
 
@@ -93,7 +93,7 @@ abstract class AbstractProxy
      */
     public function setActive($flag)
     {
-        if (PHP_VERSION_ID >= 50400) {
+        if (\PHP_VERSION_ID >= 50400) {
             throw new \LogicException('This method is disabled in PHP 5.4.0+');
         }