diff --git a/src/Task/AbstractTask.php b/src/Task/AbstractTask.php index 395dd5f..ee03134 100644 --- a/src/Task/AbstractTask.php +++ b/src/Task/AbstractTask.php @@ -62,7 +62,7 @@ abstract class AbstractTask $options = []; } - $this->options = array_merge($options, $this->getDefaults()); + $this->options = array_merge($this->getDefaults(), $options); return $this; }