Gets the last part of the name, i.e. everything after the last namespace separator.
string Last part of the name
public function getLast() : string { if (false !== ($pos = \strrpos($this->name, '\\'))) { return \substr($this->name, $pos + 1); } return $this->name; }