Skip to content

Commit 511bf53

Browse files
TomasVotrubagithub-actions[bot]
authored andcommitted
[automated] Apply Coding Standard
1 parent 5c9c57c commit 511bf53

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

rules/Php85/Rector/FuncCall/OrdSingleByteRector.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,11 +83,11 @@ public function refactor(Node $node): ?Node
8383
$value = $this->valueResolver->getValue($argExpr);
8484
$isInt = is_int($value);
8585

86-
if ($argExpr instanceof String_ && strlen($argExpr->value) === 1){
86+
if ($argExpr instanceof String_ && strlen($argExpr->value) === 1) {
8787
return null;
8888
}
8989

90-
if ($argExpr instanceof Int_ && strlen((string) $argExpr->value) === 1){
90+
if ($argExpr instanceof Int_ && strlen((string) $argExpr->value) === 1) {
9191
return null;
9292
}
9393

0 commit comments

Comments
 (0)