More compact number operations

This commit is contained in:
Alexander Makarov
2015-10-10 00:41:54 +03:00
parent b65bfad44d
commit 4ecafe653c
3 changed files with 4 additions and 4 deletions

View File

@ -231,7 +231,7 @@ class BaseVarDumper
return 'function() {/* Error: unable to determine Closure source */}';
}
$start = $start - 1;
--$start;
$source = implode("\n", array_slice(file($fileName), $start, $end - $start));
$tokens = token_get_all('<?php ' . $source);