comparison vendor/symfony/class-loader/ClassCollectionLoader.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
254 $rawChunk .= "}\n"; 254 $rawChunk .= "}\n";
255 } 255 }
256 256
257 $output .= self::compressCode($rawChunk); 257 $output .= self::compressCode($rawChunk);
258 258
259 if (PHP_VERSION_ID >= 70000) { 259 if (\PHP_VERSION_ID >= 70000) {
260 // PHP 7 memory manager will not release after token_get_all(), see https://bugs.php.net/70098 260 // PHP 7 memory manager will not release after token_get_all(), see https://bugs.php.net/70098
261 unset($tokens, $rawChunk); 261 unset($tokens, $rawChunk);
262 gc_mem_caches(); 262 gc_mem_caches();
263 } 263 }
264 264