Completed
Push — master ( 4f1c30...468f94 )
by Guillaume
02:35
created
src/Config.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -90,7 +90,7 @@
 block discarded – undo
90 90
 
91 91
     /**
92 92
      * @param  $section
93
-     * @param  null       $param
93
+     * @param  string       $param
94 94
      * @return mixed
95 95
      */
96 96
     public function get($section = null, $param = null)
Please login to merge, or discard this patch.
src/Timer.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -184,7 +184,7 @@  discard block
 block discarded – undo
184 184
     }
185 185
 
186 186
     /**
187
-     * @param $name
187
+     * @param string $name
188 188
      * @param $value
189 189
      */
190 190
     public function updateProperty($name, $value)
@@ -193,7 +193,7 @@  discard block
 block discarded – undo
193 193
     }
194 194
 
195 195
     /**
196
-     * @param  $name
196
+     * @param  string $name
197 197
      * @return mixed
198 198
      */
199 199
     private function getProperty($name)
Please login to merge, or discard this patch.
src/WorkflowHandler.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
     /**
38 38
      * @param  array     $results
39 39
      * @param  $action
40
-     * @return mixed
40
+     * @return string
41 41
      */
42 42
     public function getNotification(array $results = [], $action = null)
43 43
     {
@@ -136,7 +136,7 @@  discard block
 block discarded – undo
136 136
     }
137 137
 
138 138
     /**
139
-     * @return mixed
139
+     * @return string
140 140
      */
141 141
     public function syncOnlineDataToLocalCache()
142 142
     {
@@ -152,7 +152,7 @@  discard block
 block discarded – undo
152 152
     }
153 153
 
154 154
     /**
155
-     * @param  $needle
155
+     * @param  string $needle
156 156
      * @return mixed
157 157
      */
158 158
     private function getItems($needle)
@@ -198,7 +198,7 @@  discard block
 block discarded – undo
198 198
 
199 199
     /**
200 200
      * @param  $service
201
-     * @return mixed
201
+     * @return string
202 202
      */
203 203
     private function syncServiceOnlineDataToLocalCache($service)
204 204
     {
Please login to merge, or discard this patch.
src/commands/workflow_show_lists_commands.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -17,8 +17,8 @@
 block discarded – undo
17 17
     
18 18
     $workflow->result()
19 19
         ->arg(json_encode($data))
20
-        ->title('No ' .lcfirst($itemName))
21
-        ->subtitle('Timer will be created without a ' .lcfirst($itemName))
20
+        ->title('No ' . lcfirst($itemName))
21
+        ->subtitle('Timer will be created without a ' . lcfirst($itemName))
22 22
         ->type('default')
23 23
         ->valid(true);
24 24
 
Please login to merge, or discard this patch.