Skip to content

Commit c1c5ea5

Browse files
aaa2000soyuka
authored andcommitted
Fix phpcs
1 parent 41084b4 commit c1c5ea5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Metadata/Property/Factory/DefaultPropertyMetadataFactory.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public function create(string $resourceClass, string $property, array $options =
4848

4949
$defaultProperties = $reflectionClass->getDefaultProperties();
5050

51-
if (!array_key_exists($property, $defaultProperties) || null === ($defaultProperty = $defaultProperties[$property])) {
51+
if (!\array_key_exists($property, $defaultProperties) || null === ($defaultProperty = $defaultProperties[$property])) {
5252
return $propertyMetadata;
5353
}
5454

0 commit comments

Comments
 (0)