-
-
Notifications
You must be signed in to change notification settings - Fork 372
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[PostRector] Handle with FQCN docblock on UnusedImportRemovingPostRec…
…tor (#6722) * [PostRector] Handle with FQCN docblock on UnusedImportRemovingPostRector * [PostRector] Handle with FQCN docblock on UnusedImportRemovingPostRector * rollback * Fix
- Loading branch information
1 parent
ecd8b37
commit 59d4bca
Showing
4 changed files
with
37 additions
and
4 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
33 changes: 33 additions & 0 deletions
33
tests/Issues/NamespacedUse/Fixture/with_fqcn_docblock.php.inc
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,33 @@ | ||
<?php | ||
|
||
namespace Test; | ||
|
||
use OtherClass; | ||
|
||
class MyClass | ||
{ | ||
/** | ||
* @param \ThirdClass $user | ||
*/ | ||
public function __construct($user) | ||
{ | ||
} | ||
} | ||
|
||
?> | ||
----- | ||
<?php | ||
|
||
namespace Test; | ||
|
||
class MyClass | ||
{ | ||
/** | ||
* @param \ThirdClass $user | ||
*/ | ||
public function __construct($user) | ||
{ | ||
} | ||
} | ||
|
||
?> |