Skip to content

Commit d0bf6b1

Browse files
committed
Fix CS
1 parent 27bfdcc commit d0bf6b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Type/ObjectShapeType.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ public function isSuperTypeOf(Type $type): IsSuperTypeOfResult
296296
$result = IsSuperTypeOfResult::createYes();
297297
$scope = new OutOfClassScope();
298298
foreach ($this->properties as $propertyName => $propertyType) {
299-
$hasProperty = new IsSuperTypeOfResult($type->hasInstanceProperty((string)$propertyName), []);
299+
$hasProperty = new IsSuperTypeOfResult($type->hasInstanceProperty((string) $propertyName), []);
300300
if ($hasProperty->no()) {
301301
if (in_array($propertyName, $this->optionalProperties, true)) {
302302
continue;

0 commit comments

Comments
 (0)