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

@ -37,9 +37,6 @@ abstract class Task{
return $this->taskHandler;
}
/**
* @return int
*/
final public function getTaskId() : int{
if($this->taskHandler !== null){
return $this->taskHandler->getTaskId();
@ -52,9 +49,6 @@ abstract class Task{
return Utils::getNiceClassName($this);
}
/**
* @param TaskHandler|null $taskHandler
*/
final public function setHandler(?TaskHandler $taskHandler) : void{
if($this->taskHandler === null or $taskHandler === null){
$this->taskHandler = $taskHandler;
@ -64,8 +58,6 @@ abstract class Task{
/**
* Actions to execute when run
*
* @param int $currentTick
*
* @return void
*/
abstract public function onRun(int $currentTick);