scheduler: removing task IDs

These no longer serve any purpose that can't be replaced with a structure like Ds\Set, SplObjectStorage, or just using spl_object_id().
This commit is contained in:
Dylan K. Taylor
2020-07-08 12:01:48 +01:00
parent d738504e24
commit 6bca38999d
3 changed files with 2 additions and 26 deletions

View File

@ -37,14 +37,6 @@ abstract class Task{
return $this->taskHandler;
}
final public function getTaskId() : int{
if($this->taskHandler !== null){
return $this->taskHandler->getTaskId();
}
return -1;
}
public function getName() : string{
return Utils::getNiceClassName($this);
}