comparison vendor/symfony/http-kernel/Kernel.php @ 12:7a779792577d

Update Drupal core to v8.4.5 (via Composer)
author Chris Cannam
date Fri, 23 Feb 2018 15:52:07 +0000
parents 4c8ae668cc8c
children 1fec387a4317
comparison
equal deleted inserted replaced
11:bfffd8d7479a 12:7a779792577d
56 protected $booted = false; 56 protected $booted = false;
57 protected $name; 57 protected $name;
58 protected $startTime; 58 protected $startTime;
59 protected $loadClassCache; 59 protected $loadClassCache;
60 60
61 const VERSION = '3.2.8'; 61 const VERSION = '3.2.13';
62 const VERSION_ID = 30208; 62 const VERSION_ID = 30213;
63 const MAJOR_VERSION = 3; 63 const MAJOR_VERSION = 3;
64 const MINOR_VERSION = 2; 64 const MINOR_VERSION = 2;
65 const RELEASE_VERSION = 8; 65 const RELEASE_VERSION = 13;
66 const EXTRA_VERSION = ''; 66 const EXTRA_VERSION = '';
67 67
68 const END_OF_MAINTENANCE = '07/2017'; 68 const END_OF_MAINTENANCE = '07/2017';
69 const END_OF_LIFE = '01/2018'; 69 const END_OF_LIFE = '01/2018';
70 70
727 } 727 }
728 } 728 }
729 729
730 $output .= $rawChunk; 730 $output .= $rawChunk;
731 731
732 if (PHP_VERSION_ID >= 70000) { 732 if (\PHP_VERSION_ID >= 70000) {
733 // PHP 7 memory manager will not release after token_get_all(), see https://bugs.php.net/70098 733 // PHP 7 memory manager will not release after token_get_all(), see https://bugs.php.net/70098
734 unset($tokens, $rawChunk); 734 unset($tokens, $rawChunk);
735 gc_mem_caches(); 735 gc_mem_caches();
736 } 736 }
737 737