Skip to content

Commit

Permalink
Merge branch 'feature/getmethodparameters-bugfix' of https://github.c…
Browse files Browse the repository at this point in the history
  • Loading branch information
gsherwood committed Nov 11, 2019
2 parents df7af3c + 1b96fdb commit 857616f
Showing 1 changed file with 12 additions and 10 deletions.
22 changes: 12 additions & 10 deletions src/Files/File.php
Original file line number Diff line number Diff line change
Expand Up @@ -1496,16 +1496,18 @@ public function getMethodParameters($stackPtr)
}

// Reset the vars, as we are about to process the next parameter.
$defaultStart = null;
$equalToken = null;
$paramStart = ($i + 1);
$passByReference = false;
$referenceToken = false;
$variableLength = false;
$variadicToken = false;
$typeHint = '';
$typeHintToken = false;
$nullableType = false;
$currVar = null;
$paramStart = ($i + 1);
$defaultStart = null;
$equalToken = null;
$passByReference = false;
$referenceToken = false;
$variableLength = false;
$variadicToken = false;
$typeHint = '';
$typeHintToken = false;
$typeHintEndToken = false;
$nullableType = false;

$paramCount++;
break;
Expand Down

0 comments on commit 857616f

Please sign in to comment.