@@ -35,7 +35,7 @@ |
||
35 | 35 | */ |
36 | 36 | public function setTaskInstances(ArrayCollection $taskInstances): JobInstance |
37 | 37 | { |
38 | - $this->taskInstances = $taskInstances->filter(function (TaskInstance $taskInstance) { |
|
38 | + $this->taskInstances = $taskInstances->filter(function(TaskInstance $taskInstance) { |
|
39 | 39 | return true; |
40 | 40 | }); |
41 | 41 | return $this; |
@@ -181,11 +181,11 @@ |
||
181 | 181 | |
182 | 182 | public function __toString() |
183 | 183 | { |
184 | - return implode(",", $this->getSeconds()) . ";" . |
|
185 | - implode(",", $this->getMinutes()) . ";" . |
|
186 | - implode(",", $this->getHours()) . ";" . |
|
187 | - implode(",", $this->getDays()) . ";" . |
|
188 | - implode(",", $this->getMonths()) . ";" . |
|
184 | + return implode(",", $this->getSeconds()).";". |
|
185 | + implode(",", $this->getMinutes()).";". |
|
186 | + implode(",", $this->getHours()).";". |
|
187 | + implode(",", $this->getDays()).";". |
|
188 | + implode(",", $this->getMonths()).";". |
|
189 | 189 | implode(",", $this->getWeekdays()) |
190 | 190 | ; |
191 | 191 | } |