Completed
Push — master ( fd922f...aa408c )
by
unknown
11s
created
src/Calendar/DayOfWeekCollection.php 2 patches
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -14,6 +14,7 @@
 block discarded – undo
14 14
     /**
15 15
      * DayOfWeekCollection constructor.
16 16
      * @param DayOfWeek[] ...$daysOfWeek
17
+     * @param DayOfWeek $daysOfWeek
17 18
      */
18 19
     public function __construct(DayOfWeek ...$daysOfWeek)
19 20
     {
Please login to merge, or discard this patch.
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@
 block discarded – undo
62 62
         return array_reduce(
63 63
             $data,
64 64
             function (DayOfWeekCollection $collection, $dayOfWeek) {
65
-                 return $collection->addDayOfWeek(DayOfWeek::fromNative($dayOfWeek));
65
+                    return $collection->addDayOfWeek(DayOfWeek::fromNative($dayOfWeek));
66 66
             },
67 67
             new DayOfWeekCollection()
68 68
         );
Please login to merge, or discard this patch.