phpdoc armageddon for master, pass 1

This commit is contained in:
Dylan K. Taylor
2020-01-22 11:55:03 +00:00
parent 4bae3baa74
commit 67bcc1c0fb
397 changed files with 0 additions and 5391 deletions

View File

@ -99,9 +99,6 @@ class Bed extends Transparent{
return $this->head;
}
/**
* @return bool
*/
public function isOccupied() : bool{
return $this->occupied;
}
@ -116,16 +113,10 @@ class Bed extends Transparent{
}
}
/**
* @return int
*/
private function getOtherHalfSide() : int{
return $this->head ? Facing::opposite($this->facing) : $this->facing;
}
/**
* @return Bed|null
*/
public function getOtherHalf() : ?Bed{
$other = $this->getSide($this->getOtherHalfSide());
if($other instanceof Bed and $other->head !== $this->head and $other->facing === $this->facing){