-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
UseInAlphabeticalOrder - tests for namespace and trait diffs
- Loading branch information
Tomas Votruba
committed
Dec 24, 2014
1 parent
0f786a4
commit 3b28ab9
Showing
3 changed files
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
tests/Sniffs/Namespaces/UseInAlphabeticalOrder/correct3.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?php | ||
|
||
use A; | ||
use C; | ||
|
||
|
||
class Presenter | ||
{ | ||
|
||
use B; | ||
use D; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?php | ||
|
||
use A; | ||
use C; | ||
|
||
|
||
class Presenter | ||
{ | ||
|
||
use D; | ||
use B; | ||
|
||
} |