/home/techb158/ileadtechnology.com/vendor/phpdocumentor/reflection-common/src
NameSizeModeActions
Element.php5150644editdlrm
File.php6660644editdlrm
Fqsen.php20210644editdlrm
Location.php11660644editdlrm
Project.php5060644editdlrm
ProjectFactory.php6000644editdlrm
Edit: /home/techb158/ileadtechnology.com/vendor/phpdocumentor/reflection-common/src/Fqsen.php (2021B)
fqsen = $fqsen; if (isset($matches[2])) { $this->name = $matches[2]; } else { $matches = explode('\\', $fqsen); $name = end($matches); assert(is_string($name)); $this->name = trim($name, '()'); } } /** * converts this class to string. */ public function __toString() : string { return $this->fqsen; } /** * Returns the name of the element without path. */ public function getName() : string { return $this->name; } }