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中必须具备这样的能力。