Fix unsatisfied order dependency in systemlib

SplPriorityQueue depends on SplHeap. Make sure SplHeap appears first.
Esse commit está contido em:
Owen Yamauchi
2013-05-31 16:30:47 -07:00
commit de sgolemon
commit dfae726e62
+1 -1
Ver Arquivo
@@ -62,7 +62,7 @@ function genSystemlib($input_files) {
// the classes in a certain order so that all classes can be
// hoisted.
$initialFiles = array('stdclass.php', 'exception.php', 'arrayaccess.php',
'iterator.php', 'splfile.php');
'iterator.php', 'splfile.php', 'splheap.php');
foreach ($initialFiles as $initialFile) {
if (isset($phpfiles[$initialFile])) {
processPhpFile($phpfiles[$initialFile], $systemlib_php);