SocialShare\SocialShare::getSharesTotal PHP Method

getSharesTotal() public method

Gets the total number of share of the given URL for all providers.
public getSharesTotal ( string $url ) : integer
$url string
return integer
    public function getSharesTotal($url)
    {
        $shares = 0;
        foreach ($this->providers as $providerName => $provider) {
            $shares += $this->getShares($providerName, $url);
        }
        return $shares;
    }