Eugene-Melbourne commented on issue #6082:
URL: https://github.com/apache/netbeans/issues/6082#issuecomment-1595722500
The code before pressing `shift `+ `ctrl `+ `i`
```
<?php
/**
* 1
*/
function one(): Carbon
{
return new Carbon();
}
/**
* 2
*/
function two(): void
{
}
```
The code after pressing `shift `+ `ctrl `+ `i`
```
<?php
/**
* 1
*/
function one(): Carbon
{
return new Carbon();
}
/**
* 2
*/
use Carbon\Carbon;
function two(): void
{
}
```
Expercted
```
use Carbon\Carbon;
<?php
/**
* 1
*/
function one(): Carbon
{
return new Carbon();
}
/**
* 2
*/
function two(): 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