junichi11 opened a new pull request, #6940:
URL: https://github.com/apache/netbeans/pull/6940
Example:
```php
#[Attr1(1, 2)]
#[Attr2("test", "test")]^ // type enter key here
class AttributedClass {
#[Attr1(1, 2)]
#[Attr2("test", "test")]^ // type enter key here
public function method(): void {
}
}
```
Before:
```php
#[Attr1(1, 2)]
#[Attr2("test", "test")]
^// incorrect indent
class AttributedClass {
#[Attr1(1, 2)]
#[Attr2("test", "test")]
^// incorrect indent
public function method(): void {
}
}
```
After:
```php
#[Attr1(1, 2)]
#[Attr2("test", "test")]
^// correct indent
class AttributedClass {
#[Attr1(1, 2)]
#[Attr2("test", "test")]
^// correct indent
public function method(): void {
}
}
```
--
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