null and void typehints

This commit is contained in:
Dylan K. Taylor
2017-09-21 12:54:04 +01:00
parent d89b8cf12e
commit f01ce8e994
21 changed files with 56 additions and 56 deletions

View File

@ -43,11 +43,11 @@ class CraftingGrid extends BaseInventory{
return "Crafting";
}
public function sendSlot(int $index, $target){
public function sendSlot(int $index, $target) : void{
//we can't send a slot of a client-sided inventory window
}
public function sendContents($target){
public function sendContents($target) : void{
//we can't send the contents of a client-sided inventory window
}
}