-
-
Notifications
You must be signed in to change notification settings - Fork 364
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[CodeQuality] Handle with assign missing parentheses on ExplicitBoolC…
…ompareRector (#6668)
- Loading branch information
1 parent
0a6eb12
commit 5ad5480
Showing
2 changed files
with
46 additions
and
0 deletions.
There are no files selected for viewing
41 changes: 41 additions & 0 deletions
41
rules-tests/CodeQuality/Rector/If_/ExplicitBoolCompareRector/Fixture/with_assign.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,41 @@ | ||
<?php | ||
|
||
namespace Rector\Tests\CodeQuality\Rector\If_\ExplicitBoolCompareRector\Fixture; | ||
|
||
final class WithAssign | ||
{ | ||
private function getExpiredAt(): \Datetime|null | ||
{ | ||
return null; | ||
} | ||
|
||
public function run(string $item) | ||
{ | ||
if ($expired = $this->getExpiredAt()) { | ||
echo $expired->format('Ymd'); | ||
} | ||
} | ||
} | ||
|
||
?> | ||
----- | ||
<?php | ||
|
||
namespace Rector\Tests\CodeQuality\Rector\If_\ExplicitBoolCompareRector\Fixture; | ||
|
||
final class WithAssign | ||
{ | ||
private function getExpiredAt(): \Datetime|null | ||
{ | ||
return null; | ||
} | ||
|
||
public function run(string $item) | ||
{ | ||
if (($expired = $this->getExpiredAt()) !== null) { | ||
echo $expired->format('Ymd'); | ||
} | ||
} | ||
} | ||
|
||
?> |
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