Cassandra\Integration::getShortName PHP Метод

getShortName() приватный Метод

Get the short name of the class without the namespacing.
private getShortName ( $className ) : string
$className Class name to remove namespace from
Результат string Short name for the class name
    private function getShortName($className)
    {
        $function = new \ReflectionClass($className);
        return $function->getShortName();
    }