Imdb\Title::votes PHP Method

votes() public method

Return number of votes for this movie
See also: IMDB page / (TitlePage)
public votes ( ) : integer
return integer
    public function votes()
    {
        if ($this->main_votes == -1) {
            $this->rate_vote();
        }
        return $this->main_votes;
    }