Skip to content

Commit

Permalink
Fixed coding standards.
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexSkrypnyk committed Oct 7, 2024
1 parent 92f3dcc commit 14871ac
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ protected static function setProtectedValue(object $object, string $property, mi
* @return mixed
* Protected property value.
*/
protected static function getProtectedValue($object, $property) {
protected static function getProtectedValue($object, $property): mixed {
$class = new \ReflectionClass($object::class);
$property = $class->getProperty($property);
$property->setAccessible(TRUE);
Expand Down

0 comments on commit 14871ac

Please sign in to comment.