Remove redundant return value for setImmobile()

This commit is contained in:
Dylan K. Taylor 2016-10-30 17:07:06 +00:00
parent 16d72c7f86
commit 16d07e1f3d

View File

@ -396,7 +396,7 @@ abstract class Entity extends Location implements Metadatable{
}
public function setImmobile($value = true){
return $this->setDataFlag(self::DATA_FLAGS, self::DATA_FLAG_IMMOBILE, $value);
$this->setDataFlag(self::DATA_FLAGS, self::DATA_FLAG_IMMOBILE, $value);
}
/**