Skip to content

Commit 61d95b8

Browse files
authored
[automated] Apply Coding Standard (#7929)
Co-authored-by: TomasVotruba <924196+TomasVotruba@users.noreply.github.com>
1 parent 5c9c57c commit 61d95b8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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)