PhpBench\Report\Generator\TableGenerator::getClassShortName PHP Méthode

getClassShortName() private méthode

Return the short name of a fully qualified class name.
private getClassShortName ( string $fullName )
$fullName string
    private function getClassShortName($fullName)
    {
        $parts = explode('\\', $fullName);
        end($parts);
        return current($parts);
    }