-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b890cb8
commit 6ff7f77
Showing
2 changed files
with
47 additions
and
0 deletions.
There are no files selected for viewing
34 changes: 34 additions & 0 deletions
34
...e/DowngradeStandaloneNullTrueFalseReturnTypeRector/Fixture/override_parent_method.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,34 @@ | ||
<?php | ||
|
||
namespace Rector\Tests\DowngradePhp82\Rector\Class_\DowngradeStandaloneNullTrueFalseReturnTypeRector\Fixture; | ||
|
||
use Rector\Tests\DowngradePhp82\Rector\FunctionLike\DowngradeStandaloneNullTrueFalseReturnTypeRector\ParentClass; | ||
|
||
final class OverrideParentMethod extends ParentClass | ||
{ | ||
public function run(): null | ||
{ | ||
return null; | ||
} | ||
} | ||
|
||
?> | ||
----- | ||
<?php | ||
|
||
namespace Rector\Tests\DowngradePhp82\Rector\Class_\DowngradeStandaloneNullTrueFalseReturnTypeRector\Fixture; | ||
|
||
use Rector\Tests\DowngradePhp82\Rector\FunctionLike\DowngradeStandaloneNullTrueFalseReturnTypeRector\ParentClass; | ||
|
||
final class OverrideParentMethod extends ParentClass | ||
{ | ||
/** | ||
* @return null | ||
*/ | ||
public function run(): ?string | ||
{ | ||
return null; | ||
} | ||
} | ||
|
||
?> |
13 changes: 13 additions & 0 deletions
13
...ctor/FunctionLike/DowngradeStandaloneNullTrueFalseReturnTypeRector/Source/ParentClass.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 | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Rector\Tests\DowngradePhp82\Rector\FunctionLike\DowngradeStandaloneNullTrueFalseReturnTypeRector; | ||
|
||
class ParentClass | ||
{ | ||
public function getSomeString(): ?string | ||
{ | ||
return 'test'; | ||
} | ||
} |