Completed
Push — master ( b864d9...3fa98b )
by Dmitry
07:42 queued 03:17
created
src/controllers/PayController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -104,7 +104,7 @@
 block discarded – undo
104 104
     /**
105 105
      * @param Transaction $transaction
106 106
      * @param string|array $response
107
-     * @return mixed
107
+     * @return Transaction
108 108
      * @throws \yii\base\ExitException
109 109
      */
110 110
     protected function completeTransaction($transaction, $response)
Please login to merge, or discard this patch.
src/logic/bill/QuantityFormatterFactory.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
     }
54 54
 
55 55
     /**
56
-     * @param Bill|BillForm $bill
56
+     * @param Bill $bill
57 57
      * @return QuantityFormatterInterface|null
58 58
      */
59 59
     public function forBill($bill): ?QuantityFormatterInterface
@@ -84,6 +84,9 @@  discard block
 block discarded – undo
84 84
         return null;
85 85
     }
86 86
 
87
+    /**
88
+     * @param string $type
89
+     */
87 90
     private function fixType($type): string
88 91
     {
89 92
         if (strpos($type, ',') !== false) {
Please login to merge, or discard this patch.