- quick bugfix awaiting for array_last
This commit is contained in:
parent
dd239c63bc
commit
b093f53a6b
@ -16,7 +16,9 @@ class ReflectedClass implements ReflectedInterface
|
|||||||
|
|
||||||
public function getClassName() : string
|
public function getClassName() : string
|
||||||
{
|
{
|
||||||
return end(explode('\\', $this->name));
|
$exploded = explode('\\', $this->name);
|
||||||
|
|
||||||
|
return end($exploded);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getProperties(bool $deep = true) : array
|
public function getProperties(bool $deep = true) : array
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user