Completed
Push — gocardless-upgrade ( ab99fa )
by Arthur
02:58
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   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,6 +30,9 @@  discard block
 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);
@@ -66,7 +69,7 @@  discard block
 block discarded – undo
66 69
      * @param             $amount
67 70
      * @param null|string $name
68 71
      * @param null|string $description
69
-     * @return bool|mixed
72
+     * @return integer
70 73
      */
71 74
     public function newBill($preauthId, $amount, $name = null, $description = null)
72 75
     {
Please login to merge, or discard this patch.