Completed
Push — master ( d208aa...25518b )
by Lars
12:37
created
src/Intraface/XMLRPC/Shop/Server.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -154,7 +154,7 @@  discard block
 block discarded – undo
154 154
         return $product->getRelatedProducts();
155 155
     }
156 156
 
157
-   /**
157
+    /**
158 158
      * Gets featured products
159 159
      *
160 160
      * Method is experimental and only used by discimport.dk. If you need to use it
@@ -198,7 +198,7 @@  discard block
 block discarded – undo
198 198
         return $related_products;
199 199
     }
200 200
 
201
-   /**
201
+    /**
202 202
      * Gets product keywords which can be used to sort ones webshop
203 203
      *
204 204
      * Method is experimental and only used by nylivsstil.dk. If you need to use it
Please login to merge, or discard this patch.
src/Intraface/XMLRPC/Shop/Server0004.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -590,7 +590,7 @@  discard block
 block discarded – undo
590 590
         return $this->prepareResponseData($this->cleanUpProductList($product->getRelatedProducts($currencies, 'webshop')));
591 591
     }
592 592
 
593
-   /**
593
+    /**
594 594
      * Gets featured products
595 595
      *
596 596
      * Method is experimental and only used by discimport.dk. If you need to use it
@@ -640,7 +640,7 @@  discard block
 block discarded – undo
640 640
         return $this->prepareResponseData($related_products);
641 641
     }
642 642
 
643
-   /**
643
+    /**
644 644
      * Gets product keywords which can be used to sort ones webshop
645 645
      *
646 646
      *
Please login to merge, or discard this patch.
tests/unit/Accounting/VatPeriodTest.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -47,6 +47,9 @@  discard block
 block discarded – undo
47 47
         $this->value['saldo'] = 100;
48 48
     }
49 49
 
50
+    /**
51
+     * @param string $type
52
+     */
50 53
     function getSaldo($type, $date_from, $date_to)
51 54
     {
52 55
     }
@@ -77,6 +80,9 @@  discard block
 block discarded – undo
77 80
         return 1;
78 81
     }
79 82
 
83
+    /**
84
+     * @param integer $id
85
+     */
80 86
     function getAccount($id)
81 87
     {
82 88
         return new FakeVatPeriodAccount(new FakeVatPeriodYear, $id);
Please login to merge, or discard this patch.
tests/unit/Debtor/DebtorTest.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -63,6 +63,10 @@  discard block
 block discarded – undo
63 63
 class FakeDebtorSetting
64 64
 {
65 65
 
66
+    /**
67
+     * @param string $type
68
+     * @param string $setting
69
+     */
66 70
     function get($type, $setting)
67 71
     {
68 72
 
@@ -144,6 +148,9 @@  discard block
 block discarded – undo
144 148
         return $currency;
145 149
     }
146 150
 
151
+    /**
152
+     * @param Invoice $debtor
153
+     */
147 154
     function createPayment($debtor)
148 155
     {
149 156
         $payment = new Payment($debtor);
Please login to merge, or discard this patch.