Askedio\ItemPaginator\ItemPaginator::firstItem PHP Method

firstItem() public method

Get the number of the first item in the slice.
public firstItem ( ) : integer
return integer
    public function firstItem()
    {
        if (count($this->items) === 0) {
            return;
        }
        return $this->items[0][$this->getField()];
    }