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

getIndexFromArguments() private method

Gets the index value from the arguments.
private getIndexFromArguments ( $methodArguments ) : string
$methodArguments
return string
    private function getIndexFromArguments($methodArguments)
    {
        $index = '';
        if (isset($methodArguments[1]) && is_numeric($methodArguments[1])) {
            $index = $methodArguments[1];
        }
        return $index;
    }