Add 'addTasks' method to `Tasks` class

This commit is contained in:
Abel Hoogeveen 2020-02-14 15:30:42 +01:00
parent f229be0305
commit b60ac20786
No known key found for this signature in database
GPG Key ID: 96C2234920BF4292
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ class Tasks implements iLibrary
* @return bool
* @throws TasksException
*/
public function queueTask(Task $task): bool
public function addTask(Task $task): bool
{
$taskStorage = $this->getTaskStorage();
return $taskStorage->addTask($task);