Completed
Push — development ( c8f467...de45b7 )
by Andrij
10:53
created
application/modules/payment_method_webmoney/payment_method_webmoney.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_yakassa/payment_method_yakassa.php 1 patch
Doc Comments   +7 added lines, -1 removed lines patch added patch discarded remove patch
@@ -173,6 +173,9 @@  discard block
 block discarded – undo
173 173
         return ($callbackParams['md5'] == $md5);
174 174
     }
175 175
 
176
+    /**
177
+     * @param integer $code
178
+     */
176 179
     public function sendAviso($callbackParams, $code) {
177 180
         header("Content-type: text/xml; charset=utf-8");
178 181
         $xml = '<?xml version="1.0" encoding="UTF-8"?>
@@ -180,6 +183,9 @@  discard block
 block discarded – undo
180 183
         echo $xml;
181 184
     }
182 185
 
186
+    /**
187
+     * @param integer|null $code
188
+     */
183 189
     public function sendCode($callbackParams, $code) {
184 190
         header("Content-type: text/xml; charset=utf-8");
185 191
         $xml = '<?xml version="1.0" encoding="UTF-8"?>
@@ -230,7 +236,7 @@  discard block
 block discarded – undo
230 236
     /**
231 237
      * Save settings
232 238
      *
233
-     * @return bool|string
239
+     * @return boolean
234 240
      */
235 241
     public function saveSettings(SPaymentMethods $paymentMethod) {
236 242
         $saveKey = $paymentMethod->getId() . '_' . $this->moduleName;
Please login to merge, or discard this patch.
application/modules/print_data/print_data.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -106,6 +106,9 @@
 block discarded – undo
106 106
         }
107 107
     }
108 108
 
109
+    /**
110
+     * @param string $flag
111
+     */
109 112
     public function get_main_lang($flag = null) {
110 113
         $lang = $this->db->get('languages')->result_array();
111 114
         $lan_array = [];
Please login to merge, or discard this patch.
application/modules/sample_module/sample_module.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -69,7 +69,6 @@
 block discarded – undo
69 69
 
70 70
     /**
71 71
      * Метод обработчик
72
-     * @param type $commentId <p>ID коментария который был только что создан.</p>
73 72
      */
74 73
     public static function handler(array $param) {
75 74
         $instance = new Sample_Module();
Please login to merge, or discard this patch.
application/modules/socauth/models/socauth_model.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,8 +21,8 @@
 block discarded – undo
21 21
 
22 22
     /**
23 23
      * Create cosial link to user profile
24
-     * @param type $soc
25
-     * @param type $socId
24
+     * @param string $soc
25
+     * @param string $socId
26 26
      */
27 27
     public function setLink($soc, $socId) {
28 28
         $this->db->set('socialId', $socId);
Please login to merge, or discard this patch.
application/modules/template_manager/classes/TArchive.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
     /**
66 66
      * Unpacking the archive to ./templates/ folder
67 67
      * @param string $unpackPath (optional) path to templates folder (default ./templates)
68
-     * @return string template name
68
+     * @return boolean template name
69 69
      * @throws \Exception
70 70
      */
71 71
     public function unpack($unpackPath = TEMPLATES_PATH) {
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
 
101 101
     /**
102 102
      *
103
-     * @return null|string null if error in structure of archive or template name
103
+     * @return string null if error in structure of archive or template name
104 104
      */
105 105
     public function getTemplateName() {
106 106
         return $this->templateName;
Please login to merge, or discard this patch.
application/modules/translator/lib/php-mo.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -70,6 +70,9 @@  discard block
 block discarded – undo
70 70
 /* Parse gettext .po files. */
71 71
 /* @link http://www.gnu.org/software/gettext/manual/gettext.html#PO-Files */
72 72
 
73
+/**
74
+ * @param string $in
75
+ */
73 76
 function phpmo_parse_po_file($in) {
74 77
     // read .po file
75 78
     $fc = file_get_contents($in);
@@ -170,6 +173,9 @@  discard block
 block discarded – undo
170 173
 /* Write a GNU gettext style machine object. */
171 174
 /* @link http://www.gnu.org/software/gettext/manual/gettext.html#MO-Files */
172 175
 
176
+/**
177
+ * @param string|boolean $out
178
+ */
173 179
 function phpmo_write_mo_file($hash, $out) {
174 180
     // sort by msgid
175 181
     ksort($hash, SORT_STRING);
Please login to merge, or discard this patch.
application/modules/xbanners/src/Installers/BannersModuleManager.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/modules/xbanners/src/UrlFinder/Results/ResultInterface.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -4,11 +4,15 @@
 block discarded – undo
4 4
 
5 5
 interface ResultInterface {
6 6
 
7
+    /**
8
+     * @return void
9
+     */
7 10
     public function __construct($groupName);
8 11
 
9 12
     /**
10 13
      * @param string $name
11 14
      * @param string $url
15
+     * @return void
12 16
      */
13 17
     public function addResult($name , $url);
14 18
 
Please login to merge, or discard this patch.