4
I wonder if there is any way to sort the line by its size in the Sublime Text
.
'Cause I got a code like that:
use ArrayAccess;
use ArrayIterator;
use IteratorAggregate;
use Countable;
use Closure;
use JsonSerializable;
use Laravel\Database\Eloquent\Model;
and would like to leave it like this in "one click" (or shortcut)
use Closure;
use Countable;
use ArrayAccess;
use ArrayIterator;
use JsonSerializable;
use IteratorAggregate;
use Laravel\Database\Eloquent\Model;
Bigwon, I want this to be the coding standard of
Laravel 4
. You can see in this class code [Illuminate Support Collection])(https://github.com/illuminate/support/blob/master/Collection.php)– Wallace Maxters
When you say that "it’s not a good idea... to sort by use relevance," you’re talking specifically about namespaces, right?
– Wallace Maxters
Yes, of course. In this example not even messed up but there is case that could have gotten worse.
– Maniero