Skip to content

Commit 632b7ae

Browse files
committed
remove silenced error
1 parent 0617b60 commit 632b7ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Compiler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3655,7 +3655,7 @@ protected function callNativeFunction($name, $args, &$returnValue)
36553655
return false;
36563656
}
36573657

3658-
@list($sorted, $kwargs) = $this->sortArgs($prototype, $args);
3658+
list($sorted, $kwargs) = array_pad($this->sortArgs($prototype, $args), 2, null);
36593659

36603660
if ($name !== 'if' && $name !== 'call') {
36613661
foreach ($sorted as &$val) {

0 commit comments

Comments
 (0)