2072 / PHP-Indenting-for-VIm

The official VIm indent script for PHP
http://www.2072productions.com/to/phpindent.txt
128 stars 29 forks source link

Group use declarations #48

Closed sanpii closed 7 years ago

sanpii commented 8 years ago

https://secure.php.net/manual/fr/migration70.new-features.php#migration70.new-features.group-use-declarations

Actual:

use Symfony\Component\Console\{
    Command\Command,
        Input\InputArgument,
        Input\InputInterface,
        Output\OutputInterface
};

Expected:

use Symfony\Component\Console\{
    Command\Command,
    Input\InputArgument,
    Input\InputInterface,
    Output\OutputInterface
};