Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed coding standards. #1327

Merged
merged 1 commit into from
May 20, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -64,15 +64,8 @@ protected static function callProtectedMethod(object|string $object, string $nam

/**
* Set protected property value.
*
* @param object $object
* Object to set the value on.
* @param string $property
* Property name to set the value. Property should exists in the object.
* @param mixed $value
* Value to set to the property.
*/
protected static function setProtectedValue($object, $property, mixed $value): void {
protected static function setProtectedValue(object $object, string $property, mixed $value): void {
$class = new \ReflectionClass($object::class);
$property = $class->getProperty($property);
$property->setAccessible(TRUE);
Expand Down