pocketmine\item\Food::getResidue PHP Method

getResidue() public method

public getResidue ( )
    public function getResidue()
    {
        if ($this->getCount() === 1) {
            return Item::get(0);
        } else {
            $new = clone $this;
            $new->count--;
            return $new;
        }
    }