TheIconic\Tracking\GoogleAnalytics\Analytics::fixTypos PHP Method

fixTypos() private method

Fix typos that went into releases, this way we ensure we don't break scripts in production.
private fixTypos ( string $methodName ) : string
$methodName string
return string
    private function fixTypos($methodName)
    {
        // @TODO deprecated in v2, to be removed in v3
        if ($methodName === 'setUserTiminCategory') {
            $methodName = 'setUserTimingCategory';
        }
        return $methodName;
    }