class-string $className:
non-empty-string
public function getClassPath(string $className) : string { if (!isset($this->map[$className])) { throw new \OutOfBoundsException('Class ' . $className . ' is not present in the map'); } return $this->map[$className]; }