Exemplo n.º 1
0
 public function canBeConsumedBy(Entity $entity)
 {
     return $entity instanceof Human and $entity->getFood() < $entity->getMaxFood();
 }
Exemplo n.º 2
0
 public function canBeConsumedBy(Entity $entity) : bool
 {
     return $entity instanceof Player and $entity->getFood() < $entity->getMaxFood() and $this->canBeConsumed();
 }