We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Prettier 2.4.0
PHP Plugin 0.18.4
Input:
<?= $var1 ?><?= $var2 ?>
Output:
<?= $var1 $var2 ?>
Expected behavior:
The above output does not work, it is fundamentally broken code.
There should be no change:
...or the variables should be concatenated:
<?= $var1 . $var2 ?>
Note that if there is a space in the middle, this works fine and is not changed:
<?= $var1 ?> <?= $var2 ?>
The text was updated successfully, but these errors were encountered:
WIP Fix for multiple inline expressions
f120755
Currently breaks outputing an inline comment closes #2022
Successfully merging a pull request may close this issue.
Prettier 2.4.0
PHP Plugin 0.18.4
Input:
Output:
Expected behavior:
The above output does not work, it is fundamentally broken code.
There should be no change:
...or the variables should be concatenated:
Note that if there is a space in the middle, this works fine and is not changed:
The text was updated successfully, but these errors were encountered: