More yoda conditions
This commit is contained in:
@ -2,6 +2,8 @@
|
||||
|
||||
namespace Rector\Tests\TypeDeclaration\Rector\YodaConditionsRector\Fixture;
|
||||
const A_CONST = 'x';
|
||||
$arr = array('x'=>1);
|
||||
$obj = (object) $arr;
|
||||
$a = 'x';
|
||||
if ($a === 'x') {
|
||||
$a = 'xx';
|
||||
@ -21,12 +23,20 @@ if (strlen($a) === 1) {
|
||||
if ($a === 0 || $a === rand()) {
|
||||
return $a;
|
||||
}
|
||||
if ($obj->x === 1) {
|
||||
echo $obj->x;
|
||||
}
|
||||
if ($arr['x'] === 1) {
|
||||
echo $arr['x'];
|
||||
}
|
||||
?>
|
||||
-----
|
||||
<?php
|
||||
|
||||
namespace Rector\Tests\TypeDeclaration\Rector\YodaConditionsRector\Fixture;
|
||||
const A_CONST = 'x';
|
||||
$arr = array('x'=>1);
|
||||
$obj = (object) $arr;
|
||||
$a = 'x';
|
||||
if ('x' === $a) {
|
||||
$a = 'xx';
|
||||
@ -46,4 +56,10 @@ if (strlen($a) === 1) {
|
||||
if (0 === $a || rand() === $a) {
|
||||
return $a;
|
||||
}
|
||||
if (1 === $obj->x) {
|
||||
echo $obj->x;
|
||||
}
|
||||
if (1 === $arr['x']) {
|
||||
echo $arr['x'];
|
||||
}
|
||||
?>
|
||||
|
Reference in New Issue
Block a user