- quick bugfix awaiting for array_last

This commit is contained in:
Dave M. 2025-11-06 17:18:44 +00:00
parent dd239c63bc
commit b093f53a6b

View File

@ -16,7 +16,9 @@ class ReflectedClass implements ReflectedInterface
public function getClassName() : string
{
return end(explode('\\', $this->name));
$exploded = explode('\\', $this->name);
return end($exploded);
}
public function getProperties(bool $deep = true) : array