PhpStorm:如何对类导入进行分组(PHP 7)?

时间:2017-07-10 16:58:23

标签: php phpstorm

PhpStorm 2017.1,我希望它自动对类导入进行分组 - 通过 Ctrl + Alt + L (或者可能还有其他选项)。

我有什么:

use AppBundle\Entity\DailyTask;
use AppBundle\Entity\Event;
use AppBundle\Entity\Periodical;
use AppBundle\Entity\Ponder;
use AppBundle\Entity\Todo;
use AppBundle\Entity\Until;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Method;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;

我需要得到的结果是:

use AppBundle\Entity\{DailyTask, Event, Periodical, Ponder, Todo, Until};
use Sensio\Bundle\FrameworkExtraBundle\Configuration\{Method, Route};

怎么做?由于自PHP 7引入名称空间分组以来已经过去了一年多,我确信IDE中必须具备这样的能力。

0 个答案:

没有答案