chobie\Jira\Issues\Walker::count PHP Method

count() public method

Count elements of an object.
public count ( ) : integer
return integer The custom count as an integer.
    public function count()
    {
        if ($this->total === null) {
            $this->valid();
        }
        return $this->total;
    }