-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
resolve class constant types when patching return types
- Loading branch information
Showing
6 changed files
with
91 additions
and
1 deletion.
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,23 @@ | ||
<?php | ||
|
||
namespace Symfony\Component\ErrorHandler\Tests\Fixtures; | ||
|
||
abstract class ReturnTypeParentPhp83 | ||
{ | ||
const string FOO = 'foo'; | ||
const string|int BAR = 'bar'; | ||
|
||
/** | ||
* @return self::FOO | ||
*/ | ||
public function classConstantWithType() | ||
{ | ||
} | ||
|
||
/** | ||
* @return self::BAR | ||
*/ | ||
public function classConstantWithUnionType() | ||
{ | ||
} | ||
} |
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,11 @@ | ||
<?php | ||
|
||
namespace Test\Symfony\Component\ErrorHandler\Tests; | ||
|
||
use Symfony\Component\ErrorHandler\Tests\Fixtures\ReturnTypeParentPhp83; | ||
|
||
class ReturnTypePhp83 extends ReturnTypeParentPhp83 | ||
{ | ||
public function classConstantWithType() { } | ||
public function classConstantWithUnionType() { } | ||
} |