Completed
Push — master ( abf53e...7c57ad )
by
unknown
11:11
created
Resources/smartyPlugins/modifier.has_subscription.php 1 patch
Doc Comments   +1 added lines, -3 removed lines patch added patch discarded remove patch
@@ -7,10 +7,8 @@
 block discarded – undo
7 7
 /**
8 8
  * Function to check if user has access to content.
9 9
  *
10
- * @param array  $params
11
- * @param object $smarty
12 10
  *
13
- * @return string
11
+ * @return boolean
14 12
  */
15 13
 function smarty_modifier_has_subscription($user)
16 14
 {
Please login to merge, or discard this patch.
Entity/Order.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -481,7 +481,7 @@  discard block
 block discarded – undo
481 481
     /**
482 482
      * Gets the payments.
483 483
      *
484
-     * @return Payment
484
+     * @return Collection
485 485
      */
486 486
     public function getPayments()
487 487
     {
@@ -493,6 +493,9 @@  discard block
 block discarded – undo
493 493
         return $this->paymentState;
494 494
     }
495 495
 
496
+    /**
497
+     * @param string $paymentState
498
+     */
496 499
     public function setPaymentState($paymentState)
497 500
     {
498 501
         $this->paymentState = $paymentState;
Please login to merge, or discard this patch.