getInput() public method

public getInput ( ) : Item
return pocketmine\item\Item
 /**
  * @param BrewingRecipe $recipe
  */
 public function registerBrewingRecipe(BrewingRecipe $recipe)
 {
     $input = $recipe->getInput();
     $this->brewingRecipes[$input->getId() . ":" . ($input->getDamage() === null ? "?" : $input->getDamage())] = $recipe;
 }