Skip to content

Commit d8ca221

Browse files
committed
cs
1 parent 3332d36 commit d8ca221

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Type/IsSuperTypeOfResult.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,13 @@
3030
*/
3131
final class IsSuperTypeOfResult
3232
{
33+
3334
private static self $YES;
3435

3536
private static self $MAYBE;
3637

3738
private static self $NO;
3839

39-
4040
/**
4141
* @api
4242
* @param list<string> $reasons Human-readable explanations of the type relationship
@@ -84,7 +84,7 @@ public static function createYes(): self
8484
public static function createNo(array $reasons = []): self
8585
{
8686
if ($reasons === []) {
87-
return self::$NO ??= new self(TrinaryLogic::createNo(), $reasons);
87+
return self::$NO ??= new self(TrinaryLogic::createNo(), $reasons);
8888
}
8989
return new self(TrinaryLogic::createNo(), $reasons);
9090
}

0 commit comments

Comments
 (0)