Skip to content

Commit

Permalink
Apply fixes from StyleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
StyleCIBot committed Jan 31, 2024
1 parent 9baefd5 commit e319fc8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Mapper/Proxy/Hydrator/ClassPropertiesExtractor.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ private function findAllInstanceProperties(?ReflectionClass $class = null): arra
$this->findAllInstanceProperties($class->getParentClass() ?: null),
\array_filter(
$class->getProperties(),
static fn(ReflectionProperty $property): bool => !$property->isStatic()
static fn (ReflectionProperty $property): bool => !$property->isStatic()
)
);
}
Expand Down

0 comments on commit e319fc8

Please sign in to comment.