From 511bf53a3bc2a09eed98101e76914878cd5e35c3 Mon Sep 17 00:00:00 2001 From: TomasVotruba <924196+TomasVotruba@users.noreply.github.com> Date: Sun, 15 Mar 2026 00:55:00 +0000 Subject: [PATCH] [automated] Apply Coding Standard --- rules/Php85/Rector/FuncCall/OrdSingleByteRector.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; }