scrub useless phpdoc

This commit is contained in:
Dylan K. Taylor
2020-02-10 12:21:07 +00:00
parent 2d51971b84
commit 15b76a24b7
13 changed files with 0 additions and 34 deletions

View File

@@ -55,8 +55,6 @@ class FurnaceRecipe implements Recipe{
/**
* @deprecated
*
* @param CraftingManager $manager
*/
public function registerToCraftingManager(CraftingManager $manager) : void{
$manager->registerFurnaceRecipe($this);

View File

@@ -154,9 +154,6 @@ interface Inventory{
/**
* Swaps the specified slots.
*
* @param int $slot1
* @param int $slot2
*/
public function swap(int $slot1, int $slot2) : void;

View File

@@ -30,8 +30,6 @@ interface Recipe{
/**
* @deprecated
*
* @param CraftingManager $manager
*/
public function registerToCraftingManager(CraftingManager $manager) : void;
}

View File

@@ -178,8 +178,6 @@ class ShapedRecipe implements CraftingRecipe{
/**
* @deprecated
*
* @param CraftingManager $manager
*/
public function registerToCraftingManager(CraftingManager $manager) : void{
$manager->registerShapedRecipe($this);

View File

@@ -107,8 +107,6 @@ class ShapelessRecipe implements CraftingRecipe{
/**
* @deprecated
*
* @param CraftingManager $manager
*/
public function registerToCraftingManager(CraftingManager $manager) : void{
$manager->registerShapelessRecipe($this);