diff --git a/rules/Php85/Rector/FuncCall/OrdSingleByteRector.php b/rules/Php85/Rector/FuncCall/OrdSingleByteRector.php index 328d573abf1..6b413368af6 100644 --- a/rules/Php85/Rector/FuncCall/OrdSingleByteRector.php +++ b/rules/Php85/Rector/FuncCall/OrdSingleByteRector.php @@ -83,11 +83,11 @@ public function refactor(Node $node): ?Node $value = $this->valueResolver->getValue($argExpr); $isInt = is_int($value); - if ($argExpr instanceof String_ && strlen($argExpr->value) === 1){ + if ($argExpr instanceof String_ && strlen($argExpr->value) === 1) { return null; } - if ($argExpr instanceof Int_ && strlen((string) $argExpr->value) === 1){ + if ($argExpr instanceof Int_ && strlen((string) $argExpr->value) === 1) { return null; }