Skip to content

Commit e2d3d42

Browse files
authored
Fix "Boolean should be compared strictly" issue
1 parent 7d51bf7 commit e2d3d42

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Swagger/Serializer/DocumentationNormalizer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ private function getPropertySchema(PropertyMetadata $propertyMetadata) : \ArrayO
310310
$propertySchema['description'] = $description;
311311
}
312312

313-
if (null == $type = $propertyMetadata->getType()) {
313+
if (null === $type = $propertyMetadata->getType()) {
314314
return $propertySchema;
315315
}
316316

0 commit comments

Comments
 (0)