4.2.7. Gather Use Expression

Move lone use expression to the beginning of the file.

4.2.7.1. Before

<?php
    use A;
    ++$a;
    use B;
?>

4.2.7.2. After

<?php
    use A;
    use B;
    ++$a;
?>

4.2.7.3. Suggested Analysis

4.2.7.4. Specs

Short Name

Namespaces/GatherUse

Exakat version

2.3.0

Available in

Entreprise Edition, Exakat Cloud