Completed
Push — development ( c8f467...de45b7 )
by Andrij
10:53
created
application/modules/payment_method_2checkout/payment_method_2checkout.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -174,7 +174,7 @@
 block discarded – undo
174 174
     /**
175 175
      * Save settings
176 176
      *
177
-     * @return bool|string
177
+     * @return boolean
178 178
      */
179 179
     public function saveSettings(SPaymentMethods $paymentMethod) {
180 180
         $saveKey = $paymentMethod->getId() . '_' . $this->moduleName;
Please login to merge, or discard this patch.
application/modules/payment_method_interkassa/payment_method_interkassa.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -174,7 +174,7 @@
 block discarded – undo
174 174
     /**
175 175
      * Save settings
176 176
      *
177
-     * @return bool|string
177
+     * @return boolean
178 178
      */
179 179
     public function saveSettings(SPaymentMethods $paymentMethod) {
180 180
         $saveKey = $paymentMethod->getId() . '_' . $this->moduleName;
Please login to merge, or discard this patch.
application/modules/payment_method_liqpay/payment_method_liqpay.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -174,7 +174,7 @@
 block discarded – undo
174 174
     /**
175 175
      * Save settings
176 176
      *
177
-     * @return bool|string
177
+     * @return boolean
178 178
      */
179 179
     public function saveSettings(SPaymentMethods $paymentMethod) {
180 180
         $saveKey = $paymentMethod->getId() . '_' . $this->moduleName;
Please login to merge, or discard this patch.
application/modules/payment_method_paypal/payment_method_paypal.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -174,7 +174,7 @@
 block discarded – undo
174 174
     /**
175 175
      * Save settings
176 176
      *
177
-     * @return bool|string
177
+     * @return boolean
178 178
      */
179 179
     public function saveSettings(SPaymentMethods $paymentMethod) {
180 180
         $saveKey = $paymentMethod->getId() . '_' . $this->moduleName;
Please login to merge, or discard this patch.
application/modules/payment_method_robokassa/payment_method_robokassa.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -174,7 +174,7 @@
 block discarded – undo
174 174
     /**
175 175
      * Save settings
176 176
      *
177
-     * @return bool|string
177
+     * @return boolean
178 178
      */
179 179
     public function saveSettings(SPaymentMethods $paymentMethod) {
180 180
         $saveKey = $paymentMethod->getId() . '_' . $this->moduleName;
Please login to merge, or discard this patch.
application/modules/xbanners/src/Entities/BannerEffects.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -150,7 +150,7 @@
 block discarded – undo
150 150
     /**
151 151
      * Run self::getQueries() with DROP_PATTERN
152 152
      *
153
-     * @return array
153
+     * @return string[]
154 154
      */
155 155
     protected function getDropQueries() {
156 156
 
Please login to merge, or discard this patch.
application/helpers/html_helper.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
 
14 14
     /**
15 15
      * @param string $content
16
-     * @return mixed
16
+     * @return string
17 17
      */
18 18
     function href_nofollow($content) {
19 19
         return preg_replace_callback('/<(a\s[^>]+)>/isU', 'seo_nofollow_replace', $content);
Please login to merge, or discard this patch.
application/helpers/rules_helper.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@  discard block
 block discarded – undo
7 7
 if (!function_exists('admin_or_redirect')) {
8 8
 
9 9
     /**
10
-     * @return bool
10
+     * @return boolean|null
11 11
      */
12 12
     function admin_or_redirect() {
13 13
         if (PHP_SAPI == 'cli') {
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
 
44 44
     /**
45 45
      * @param string $perm
46
-     * @return bool
46
+     * @return boolean|null
47 47
      */
48 48
     function cp_check_perm($perm) {
49 49
         $ci = & get_instance();
Please login to merge, or discard this patch.
application/libraries/lib_category.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -135,6 +135,8 @@
 block discarded – undo
135 135
      * Get value of category item
136 136
      *
137 137
      * @access public
138
+     * @param string $param
139
+     * @return string
138 140
      */
139 141
     public function GetValue($cat_id, $param) {
140 142
         if ($this->unsorted_arr == FALSE) {
Please login to merge, or discard this patch.