Yaffs site version 1.1
[yaffs-website] / vendor / symfony / http-kernel / Kernel.php
index b871a8ebd4989ef14265678ac1b17297151638f7..97e83f8d59c801449f1fe2af18e7e7c3f29a8314 100644 (file)
@@ -59,11 +59,11 @@ abstract class Kernel implements KernelInterface, TerminableInterface
     protected $startTime;
     protected $loadClassCache;
 
-    const VERSION = '2.8.19';
-    const VERSION_ID = 20819;
+    const VERSION = '2.8.22';
+    const VERSION_ID = 20822;
     const MAJOR_VERSION = 2;
     const MINOR_VERSION = 8;
-    const RELEASE_VERSION = 19;
+    const RELEASE_VERSION = 22;
     const EXTRA_VERSION = '';
 
     const END_OF_MAINTENANCE = '11/2018';
@@ -755,7 +755,7 @@ abstract class Kernel implements KernelInterface, TerminableInterface
 
         $output .= $rawChunk;
 
-        if (PHP_VERSION_ID >= 70000) {
+        if (\PHP_VERSION_ID >= 70000) {
             // PHP 7 memory manager will not release after token_get_all(), see https://bugs.php.net/70098
             unset($tokens, $rawChunk);
             gc_mem_caches();