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

key() public method

Return the key of the current element.
public key ( ) : mixed
return mixed scalar on success, or null on failure.
    public function key()
    {
        if ($this->startAt > 0) {
            return $this->offset + ($this->startAt - 1) * $this->perPage;
        } else {
            return 0;
        }
    }