Completed
Push — master ( 3cd4b3...0ed6c3 )
by Jonathan
02:13
created
src/Combiners.php 1 patch
Doc Comments   +17 added lines patch added patch discarded remove patch
@@ -40,6 +40,11 @@  discard block
 block discarded – undo
40 40
     public static function appender(string $destination, string $prefix = null): Reducer
41 41
     {
42 42
         return new class($destination, $prefix) implements Reducer {
43
+
44
+            /**
45
+             * @param string $destination
46
+             * @param string $prefix
47
+             */
43 48
             public function __construct($destination, $prefix = null)
44 49
             {
45 50
                 $this->destination = $destination;
@@ -78,6 +83,11 @@  discard block
 block discarded – undo
78 83
     public static function prefixed(string $destination, string $prefix = null): Reducer
79 84
     {
80 85
         return new class($destination, $prefix) implements Reducer {
86
+
87
+            /**
88
+             * @param string $destination
89
+             * @param null|string $prefix
90
+             */
81 91
             public function __construct($destination, $prefix)
82 92
             {
83 93
                 $this->destination = $destination;
@@ -114,6 +124,13 @@  discard block
 block discarded – undo
114 124
     public static function datetime(string $destination, string $date, string $time, string $timezone = null): Reducer
115 125
     {
116 126
         return new class($destination, $date, $time, $timezone) implements Reducer {
127
+
128
+            /**
129
+             * @param string $destination
130
+             * @param string $date
131
+             * @param string $time
132
+             * @param string $timezone
133
+             */
117 134
             public function __construct($destination, $date, $time, $timezone = null)
118 135
             {
119 136
                 $this->destination = $destination;
Please login to merge, or discard this patch.