Completed
Push — master ( 62a775...7c62cf )
by Arthur
02:51
created
app/Repo/InductionRepository.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
     }
34 34
 
35 35
     /**
36
-     * @param $deviceId
36
+     * @param string $deviceId
37 37
      * @return array
38 38
      */
39 39
     public function getTrainersForEquipment($deviceId)
Please login to merge, or discard this patch.
app/Entities/Settings.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -39,6 +39,9 @@
 block discarded – undo
39 39
         self::create(['key' => $key, 'value' => $value]);
40 40
     }
41 41
 
42
+    /**
43
+     * @param string $key
44
+     */
42 45
     public static function get($key)
43 46
     {
44 47
         $setting = self::findOrFail($key);
Please login to merge, or discard this patch.
app/Helpers/GoCardlessHelper.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -30,6 +30,9 @@
 block discarded – undo
30 30
         ]);
31 31
     }
32 32
 
33
+    /**
34
+     * @return double
35
+     */
33 36
     public function getPayment($paymentId)
34 37
     {
35 38
         return $this->client->payments()->get($paymentId);
Please login to merge, or discard this patch.