The way that we parse use statements at the moment is a bit odd. For example, consider the following example:
<?php use A\B\C; use X\Y\Z;
This is currently parsed as:
After this change, it is instead parsed as:
Differential D14518
Improve parsing of `use` statements joshuaspence on Nov 19 2015, 8:50 AM. Authored by Tags None Referenced Files
Subscribers
Details
The way that we parse use statements at the moment is a bit odd. For example, consider the following example: <?php use A\B\C; use X\Y\Z; This is currently parsed as: After this change, it is instead parsed as: Added a test case.
Diff Detail
|