X-Git-Url: http://www.aleph1.co.uk/gitweb/?a=blobdiff_plain;ds=sidebyside;f=vendor%2Fsymfony%2Fhttp-kernel%2FKernel.php;fp=vendor%2Fsymfony%2Fhttp-kernel%2FKernel.php;h=97e83f8d59c801449f1fe2af18e7e7c3f29a8314;hb=eba34333e3c89f208d2f72fa91351ad019a71583;hp=b871a8ebd4989ef14265678ac1b17297151638f7;hpb=a2bd1bf0c2c1f1a17d188f4dc0726a45494cefae;p=yaffs-website diff --git a/vendor/symfony/http-kernel/Kernel.php b/vendor/symfony/http-kernel/Kernel.php index b871a8ebd..97e83f8d5 100644 --- a/vendor/symfony/http-kernel/Kernel.php +++ b/vendor/symfony/http-kernel/Kernel.php @@ -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();