Skip to content

Commit 6d13f30

Browse files
committed
Fix CS
1 parent 3c67bc3 commit 6d13f30

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

features/bootstrap/SwaggerContext.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ public function assertPropertyIsRequiredForSwagger(string $propertyName, string
139139
*/
140140
public function assertPropertyIsRequiredForOpenAPi(string $propertyName, string $className)
141141
{
142-
if (!\in_array($propertyName, $this->getClassInfo($className, 3)->required, true)) {
142+
if (!in_array($propertyName, $this->getClassInfo($className, 3)->required, true)) {
143143
throw new ExpectationFailedException(sprintf('Property "%s" of class "%s" should be required', $propertyName, $className));
144144
}
145145
}

0 commit comments

Comments
 (0)