Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 152cebb

Browse files
committed
Corrected exception message
1 parent 0c01b94 commit 152cebb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utils/reflection.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ private static function resolve_class(string $class_name, string $name, bool $me
2727
$class_name = get_parent_class($class_name);
2828
} while ($class_name !== false);
2929

30-
throw new \Exception("Unable to find class for the property {$property_name}");
30+
throw new \Exception("Unable to find class for {$name}");
3131
}
3232

3333
/**

0 commit comments

Comments
 (0)