Completed
Push — master ( 169e5d...b608d5 )
by Guillaume
02:16
created
src/Timer.php 2 patches
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -193,7 +193,7 @@  discard block
 block discarded – undo
193 193
 
194 194
     /**
195 195
      * @param $service
196
-     * @param null       $action
196
+     * @param string       $action
197 197
      * @param null       $success
198 198
      */
199 199
     public function setNotificationForService($service = null, $action = null, $success = null)
@@ -302,7 +302,7 @@  discard block
 block discarded – undo
302 302
     }
303 303
 
304 304
     /**
305
-     * @param $name
305
+     * @param string $name
306 306
      * @param $value
307 307
      */
308 308
     public function updateProperty($name, $value)
@@ -311,7 +311,7 @@  discard block
 block discarded – undo
311 311
     }
312 312
 
313 313
     /**
314
-     * @param  $name
314
+     * @param  string $name
315 315
      * @return mixed
316 316
      */
317 317
     private function getProperty($name)
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -295,7 +295,7 @@
 block discarded – undo
295 295
         $timerData = [];
296 296
 
297 297
         foreach ($this->config->runningServices() as $service) {
298
-            $timerData[$service] = $this->getProperty($service .'_id');
298
+            $timerData[$service] = $this->getProperty($service . '_id');
299 299
         }
300 300
 
301 301
         return $this->delete($timerData);
Please login to merge, or discard this patch.