junichi11 commented on issue #4241:
URL: https://github.com/apache/netbeans/issues/4241#issuecomment-1159585866
Thanks! Reproducible.
Umm, this behavior is not changed. We can also get the same result in old
versions.
I guess that this behavior is implemented to avoid breaking syntax. (I don't
implement this...)
e.g.
```php
<?php
///**
// * Do nothing
* @param string $param
*/
function myFunction(string $param = null) {
// do nothing
}
```
As a workaround: Select from the above empty line.
```php
<?php
//
///**
// * Do nothing
// * @param string $param
// */
//function myFunction(string $param = null) {
// // do nothing
//}
```
We may be able to improve a bit although I can't promise anything.
--
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