Release of RC1 #7

Merged
abelhooge merged 34 commits from 3-features into master 2020-06-07 13:54:20 +00:00
1 changed files with 2 additions and 2 deletions
Showing only changes of commit 19f11d9c7e - Show all commits

View File

@ -93,7 +93,7 @@ class DummyTaskStorage implements TaskStorage
throw new TasksException("Could not add Task to TaskStorage. Task '$taskId' already exists.");
}
$this->tasks[] = $task;
$this->tasks[] = clone $task;
return true;
}
@ -146,7 +146,7 @@ class DummyTaskStorage implements TaskStorage
{
if ($this->tasks[$i]->getId() === $taskId)
{
$this->tasks[$i] = $task;
$this->tasks[$i] = clone $task;
return true;
}
}