Services\InternalService::getServiceName PHP Method

getServiceName() public static method

Get the name of this service, ie the unqualified class name of the resource type it handles.
public static getServiceName ( ) : string
return string
    public static function getServiceName()
    {
        $class = new \ReflectionClass(static::getResourceClass());
        return $class->getShortName();
    }