Skip to content

Commit 2ed4fb7

Browse files
Fix lint
1 parent 0087cd2 commit 2ed4fb7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Type/Accessory/AccessoryLowercaseStringType.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,8 +116,8 @@ public function isSubTypeOfWithReason(Type $otherType): IsSuperTypeOfResult
116116
return (new IsSuperTypeOfResult(
117117
$isLowercase,
118118
$otherType->isString()->yes() && $isLowercase->no()
119-
? [sprintf("%s is not lowercase.", $otherType->describe(VerbosityLevel::value()))]
120-
: []
119+
? [sprintf('%s is not lowercase.', $otherType->describe(VerbosityLevel::value()))]
120+
: [],
121121
))
122122
->and($otherType instanceof self ? IsSuperTypeOfResult::createYes() : IsSuperTypeOfResult::createMaybe());
123123
}

0 commit comments

Comments
 (0)