Skip to content

Commit 766130f

Browse files
author
Eugene Fureev
committed
fix
1 parent 688e133 commit 766130f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Global/base.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -361,11 +361,11 @@ function public_property_exists(object $instance, string $attribute): ?string
361361
}
362362

363363

364-
if (!function_exists('get_property_value')) {
364+
if (!function_exists('getPropertyValue')) {
365365
/**
366366
* Returns a value from public property or null
367367
*/
368-
function get_property_value(object $instance, string $attribute): mixed
368+
function getPropertyValue(object $instance, string $attribute): mixed
369369
{
370370
$property = public_property_exists($instance, $attribute);
371371
if ($property) {

0 commit comments

Comments
 (0)