Completed
Push — master ( f0b4ea...4efcd1 )
by Nicolaas
01:59
created
code/CheckoutPage.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -162,6 +162,7 @@  discard block
 block discarded – undo
162 162
      *
163 163
      * @param string - $currentStep       is the step that has just been actioned....
164 164
      * @param bool -   $doPreviousInstead - return previous rather than next step
165
+     * @param string $currentStep
165 166
      *
166 167
      * @return string (URLSegment)
167 168
      */
@@ -688,7 +689,7 @@  discard block
 block discarded – undo
688 689
     /**
689 690
      * returns the percentage of steps done (0 - 100).
690 691
      *
691
-     * @return int
692
+     * @return double
692 693
      */
693 694
     public function PercentageDone()
694 695
     {
Please login to merge, or discard this patch.
code/cms/dev/EcommerceDatabaseAdmin.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -333,7 +333,7 @@
 block discarded – undo
333 333
     }
334 334
 
335 335
     /**
336
-     * @return array ????
336
+     * @return string ????
337 337
      */
338 338
     public function AllTests()
339 339
     {
Please login to merge, or discard this patch.
code/cms/dev/EcommerceDevelopmentAdminDecorator.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
      *
23 23
      * @param SS_HTTPRequest
24 24
      *
25
-     * @return HTML
25
+     * @return EcommerceDatabaseAdmin
26 26
      **/
27 27
     public function ecommerce(SS_HTTPRequest $request)
28 28
     {
Please login to merge, or discard this patch.
code/config/EcommerceConfigDefinitions.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
     /**
23 23
      * Tells us the version of e-commerce in use.
24 24
      *
25
-     * @return int
25
+     * @return double
26 26
      */
27 27
     public function Version()
28 28
     {
Please login to merge, or discard this patch.
code/control/CartResponse.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -47,11 +47,11 @@
 block discarded – undo
47 47
     /**
48 48
      * Builds json object to be returned via ajax.
49 49
      *
50
-     * @param array  $message        (Type, Message)
50
+     * @param array  $messages        (Type, Message)
51 51
      * @param array  $additionalData
52 52
      * @param string $status
53 53
      *
54
-     * @return HEADER + JSON
54
+     * @return string + JSON
55 55
      **/
56 56
     public function ReturnCartData(array $messages = array(), array $additionalData = null, $status = 'success')
57 57
     {
Please login to merge, or discard this patch.
code/control/EcommerceResponse.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
 {
13 13
     /**
14 14
      * @param string       $status  the status to return
15
-     * @param string       $message the message to return with the retur
15
+     * @param string       $messages the message to return with the retur
16 16
      * @param null | Array $data,   that should be included
17 17
      */
18 18
     public function ReturnCartData(array $messages = array(), array $additionalData = null, $status = 'success')
Please login to merge, or discard this patch.
code/control/OrderEmailRecord_Review.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -7,6 +7,9 @@
 block discarded – undo
7 7
         'read' => 'ShopAdmin',
8 8
     );
9 9
 
10
+    /**
11
+     * @param OrderEmailRecord $email
12
+     */
10 13
     public static function review_link($email)
11 14
     {
12 15
         return Config::inst()->get('OrderEmailRecord_Review', 'url_segment').'/read/'.$email->ID;
Please login to merge, or discard this patch.
code/control/OrderStepController.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -128,6 +128,7 @@
 block discarded – undo
128 128
     /**
129 129
      * @oaram string $action
130 130
      *
131
+     * @param string $action
131 132
      * @return string
132 133
      */
133 134
     public function Link($action = null)
Please login to merge, or discard this patch.
code/filesystem/Product_Image.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -168,7 +168,7 @@  discard block
 block discarded – undo
168 168
     }
169 169
 
170 170
     /**
171
-     * @return string HTML
171
+     * @return DBField HTML
172 172
      */
173 173
     public function CMSThumbnail()
174 174
     {
@@ -176,7 +176,7 @@  discard block
 block discarded – undo
176 176
     }
177 177
 
178 178
     /**
179
-     * @return string HTML
179
+     * @return DBField HTML
180 180
      */
181 181
     public function getCMSThumbnail()
182 182
     {
Please login to merge, or discard this patch.