Skip to content

Commit

Permalink
Merge pull request #2 from miska/master
Browse files Browse the repository at this point in the history
php7.4 compatibility improvement
  • Loading branch information
dracony authored Dec 31, 2019
2 parents 79f1bd9 + 6fc69be commit 0f6e20b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/PHPixie/CLI/Context/SAPI.php
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ public function requireParsedArguments()
array_shift($parameters);
foreach($parameters as $parameter) {

if($parameter{0} !== '-') {
if($parameter[0] !== '-') {
$arguments[]= $parameter;
continue;
}
Expand Down

0 comments on commit 0f6e20b

Please sign in to comment.