Skip to content

Commit

Permalink
Apply phpcs
Browse files Browse the repository at this point in the history
  • Loading branch information
SerafimArts committed Feb 4, 2025
1 parent b6c165f commit 00604b2
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/Runtime/PropertyAccessor/ReflectionPropertyAccessor.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ final class ReflectionPropertyAccessor implements PropertyAccessorInterface
{
/**
* @param non-empty-string $property
*
* @throws \ReflectionException
*/
private function getPropertyForGet(object $object, string $property): \ReflectionProperty
Expand All @@ -17,6 +18,7 @@ private function getPropertyForGet(object $object, string $property): \Reflectio

/**
* @param non-empty-string $property
*
* @throws \ReflectionException
*/
private function getPropertyForSet(object $object, string $property): \ReflectionProperty
Expand Down Expand Up @@ -58,6 +60,7 @@ public function isReadable(object $object, string $property): bool

/**
* @param non-empty-string $property
*
* @throws \ReflectionException
*/
private function isReadableUsingHooks(object $object, string $property): bool
Expand Down Expand Up @@ -96,6 +99,7 @@ public function isWritable(object $object, string $property): bool

/**
* @param non-empty-string $property
*
* @throws \ReflectionException
*/
private function isWritableUsingHooks(object $object, string $property): bool
Expand Down

0 comments on commit 00604b2

Please sign in to comment.