junichi11 commented on issue #6731:
URL: https://github.com/apache/netbeans/issues/6731#issuecomment-1820435729
Please write like this
```php
<?php
$result = someFunction(
"example {$postId}"
); // type enter key here
```
Expected result:
```php
<?php
$result = someFunction(
"example {$postId}"
);
// no indentation here
```
Actual result:
```php
<?php
$result = someFunction(
"example {$postId}"
);
// one indentation is added here
```
Maybe, what you expect is this, right?
Don't you think it's easier to understand without misunderstanding?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists