Completed
Push — master ( ba35bd...aa9ebf )
by Valentin
03:45
created
src/Structure/JobInstance.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
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;
Please login to merge, or discard this patch.
src/Structure/TimeSchedule.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -181,11 +181,11 @@
 block discarded – undo
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
     }
Please login to merge, or discard this patch.