-
Notifications
You must be signed in to change notification settings - Fork 473
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix resolving types in @var above use statement
- Loading branch information
1 parent
6b85d98
commit 4fff79c
Showing
3 changed files
with
52 additions
and
14 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
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
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,15 @@ | ||
<?php | ||
|
||
namespace Bug4486; | ||
|
||
/** | ||
* @var ClassName1 $one | ||
* @var ClassName2 $two | ||
*/ | ||
|
||
use \Some\Namespaced\ClassName1; | ||
use \Some\Namespaced\ClassName2; | ||
|
||
/** | ||
* @var ClassName1 $three | ||
*/ |