Skip to content

Commit

Permalink
Fixed else statement code style (#297)
Browse files Browse the repository at this point in the history
  • Loading branch information
nusje2000 authored Oct 16, 2021
1 parent 7a4a978 commit 5efa528
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion generator/src/WritePhpFunction.php
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ private function writePhpFunction(): string
break;
}
} while (true);
$phpFunction .= 'else {'."\n";
$phpFunction .= ' else {'."\n";
$phpFunction .= ' $result = '.$this->printFunctionCall($method)."\n";
$phpFunction .= ' }';
}
Expand Down

0 comments on commit 5efa528

Please sign in to comment.