-
Notifications
You must be signed in to change notification settings - Fork 471
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Apply same fix in MethodSignatureRule from be2b415
- Loading branch information
1 parent
1bf37b9
commit 85fcd5f
Showing
5 changed files
with
79 additions
and
21 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
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,27 @@ | ||
<?php | ||
|
||
namespace Bug10166; | ||
|
||
trait ReturnTypeTrait { | ||
abstract public static function createSelf(): self; | ||
} | ||
|
||
final class ReturnTypeClass | ||
{ | ||
use ReturnTypeTrait; | ||
|
||
public static function createSelf(): self | ||
{ | ||
return new self(); | ||
} | ||
} | ||
|
||
final class ReturnTypeClass2 | ||
{ | ||
use ReturnTypeTrait; | ||
|
||
public static function createSelf(): ?self | ||
{ | ||
return new self(); | ||
} | ||
} |