File tree Expand file tree Collapse file tree
rules/DeadCode/NodeManipulator Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1212use PhpParser \Node \Expr \BinaryOp \Coalesce ;
1313use PhpParser \Node \Expr \BinaryOp \LogicalAnd ;
1414use PhpParser \Node \Expr \BinaryOp \LogicalOr ;
15+ use PhpParser \Node \Expr \BinaryOp \Pipe ;
1516use PhpParser \Node \Expr \BitwiseNot ;
1617use PhpParser \Node \Expr \BooleanNot ;
1718use PhpParser \Node \Expr \Cast ;
@@ -96,7 +97,7 @@ private function isBinaryOpWithoutChange(Expr $expr): bool
9697 if (!$ expr instanceof BinaryOp) {
9798 return \false;
9899 }
99- return !($ expr instanceof LogicalAnd || $ expr instanceof BooleanAnd || $ expr instanceof LogicalOr || $ expr instanceof BooleanOr || $ expr instanceof Coalesce);
100+ return !($ expr instanceof LogicalAnd || $ expr instanceof BooleanAnd || $ expr instanceof LogicalOr || $ expr instanceof BooleanOr || $ expr instanceof Coalesce || $ expr instanceof Pipe );
100101 }
101102 /**
102103 * @return Expr[]
Original file line number Diff line number Diff line change @@ -19,12 +19,12 @@ final class VersionResolver
1919 * @api
2020 * @var string
2121 */
22- public const PACKAGE_VERSION = 'badcffc946057eac210b7bd3c16a4c952721b9be ' ;
22+ public const PACKAGE_VERSION = '2d8958e855f1d412a280cfeba981c265ca3cae1d ' ;
2323 /**
2424 * @api
2525 * @var string
2626 */
27- public const RELEASE_DATE = '2026-03-28 15:09:27 ' ;
27+ public const RELEASE_DATE = '2026-03-28 17:45:30 ' ;
2828 /**
2929 * @var int
3030 */
You can’t perform that action at this time.
0 commit comments