Test Failed
Branch develop (745f3d)
by Felipe
08:34 queued 04:38
created
src/controllers/DisplayController.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -554,6 +554,7 @@  discard block
 block discarded – undo
554 554
 
555 555
     /**
556 556
      * Show confirmation of edit and perform actual update
557
+     * @param boolean $confirm
557 558
      */
558 559
     public function doEditRow($confirm, $msg = '')
559 560
     {
@@ -745,6 +746,7 @@  discard block
 block discarded – undo
745 746
 
746 747
     /**
747 748
      * Show confirmation of drop and perform actual drop
749
+     * @param boolean $confirm
748 750
      */
749 751
     public function doDelRow($confirm)
750 752
     {
@@ -874,6 +876,7 @@  discard block
 block discarded – undo
874 876
     /**
875 877
      * Print table header cells
876 878
      * @param $args - associative array for sort link parameters
879
+     * @param boolean $withOid
877 880
      *
878 881
      */
879 882
     public function printTableHeaderCells(&$rs, $args, $withOid)
@@ -922,6 +925,10 @@  discard block
 block discarded – undo
922 925
     }
923 926
 
924 927
     /* Print data-row cells */
928
+
929
+    /**
930
+     * @param boolean $withOid
931
+     */
925 932
     public function printTableRowCells(&$rs, &$fkey_information, $withOid)
926 933
     {
927 934
         $conf = $this->conf;
Please login to merge, or discard this patch.
src/controllers/DomainsController.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -309,6 +309,7 @@  discard block
 block discarded – undo
309 309
 
310 310
     /**
311 311
      * Confirm and then actually add a CHECK constraint
312
+     * @param boolean $confirm
312 313
      */
313 314
     public function addCheck($confirm, $msg = '')
314 315
     {
@@ -365,6 +366,7 @@  discard block
 block discarded – undo
365 366
 
366 367
     /**
367 368
      * Show confirmation of drop constraint and perform actual drop
369
+     * @param boolean $confirm
368 370
      */
369 371
     public function doDropConstraint($confirm, $msg = '')
370 372
     {
@@ -533,6 +535,7 @@  discard block
 block discarded – undo
533 535
 
534 536
     /**
535 537
      * Show confirmation of drop and perform actual drop
538
+     * @param boolean $confirm
536 539
      */
537 540
     public function doDrop($confirm)
538 541
     {
Please login to merge, or discard this patch.
src/controllers/FulltextController.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -292,6 +292,9 @@  discard block
 block discarded – undo
292 292
         return $this->printTree($items, $attrs, strtolower($what));
293 293
     }
294 294
 
295
+    /**
296
+     * @param boolean $confirm
297
+     */
295 298
     public function doDropConfig($confirm)
296 299
     {
297 300
         $conf = $this->conf;
@@ -325,6 +328,9 @@  discard block
 block discarded – undo
325 328
         }
326 329
     }
327 330
 
331
+    /**
332
+     * @param boolean $confirm
333
+     */
328 334
     public function doDropDict($confirm)
329 335
     {
330 336
         $conf = $this->conf;
@@ -1064,6 +1070,7 @@  discard block
 block discarded – undo
1064 1070
 
1065 1071
     /**
1066 1072
      * Show confirmation of drop and perform actual drop of FTS mapping
1073
+     * @param boolean $confirm
1067 1074
      */
1068 1075
     public function doDropMapping($confirm)
1069 1076
     {
Please login to merge, or discard this patch.
src/controllers/FunctionsController.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -716,6 +716,7 @@  discard block
 block discarded – undo
716 716
 
717 717
     /**
718 718
      * Show confirmation of drop and perform actual drop
719
+     * @param boolean $confirm
719 720
      */
720 721
     public function doDrop($confirm)
721 722
     {
@@ -1135,6 +1136,7 @@  discard block
 block discarded – undo
1135 1136
 
1136 1137
     /**
1137 1138
      * Build out JS to re-create table rows for arguments
1139
+     * @param string $szArgs
1138 1140
      */
1139 1141
     private function buildJSRows($szArgs)
1140 1142
     {
Please login to merge, or discard this patch.
src/controllers/GroupsController.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -149,6 +149,7 @@  discard block
 block discarded – undo
149 149
 
150 150
     /**
151 151
      * Show confirmation of drop user from group and perform actual drop
152
+     * @param boolean $confirm
152 153
      */
153 154
     public function doDropMember($confirm)
154 155
     {
@@ -263,6 +264,7 @@  discard block
 block discarded – undo
263 264
 
264 265
     /**
265 266
      * Show confirmation of drop and perform actual drop
267
+     * @param boolean $confirm
266 268
      */
267 269
     public function doDrop($confirm)
268 270
     {
Please login to merge, or discard this patch.
src/controllers/HistoryController.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -181,6 +181,9 @@  discard block
 block discarded – undo
181 181
         $this->printNavLinks($navlinks, 'history-history', get_defined_vars());
182 182
     }
183 183
 
184
+    /**
185
+     * @param boolean $confirm
186
+     */
184 187
     public function doDelHistory($qid, $confirm)
185 188
     {
186 189
         $conf = $this->conf;
@@ -210,6 +213,9 @@  discard block
 block discarded – undo
210 213
         }
211 214
     }
212 215
 
216
+    /**
217
+     * @param boolean $confirm
218
+     */
213 219
     public function doClearHistory($confirm)
214 220
     {
215 221
         $conf = $this->conf;
Please login to merge, or discard this patch.
src/controllers/MaterializedviewsController.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -286,6 +286,7 @@  discard block
 block discarded – undo
286 286
 
287 287
     /**
288 288
      * Ask for select parameters and perform select
289
+     * @param boolean $confirm
289 290
      */
290 291
     public function doSelectRows($confirm, $msg = '')
291 292
     {
@@ -415,6 +416,7 @@  discard block
 block discarded – undo
415 416
 
416 417
     /**
417 418
      * Show confirmation of drop and perform actual drop
419
+     * @param boolean $confirm
418 420
      */
419 421
     public function doDrop($confirm)
420 422
     {
Please login to merge, or discard this patch.
src/controllers/OperatorsController.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -237,6 +237,7 @@
 block discarded – undo
237 237
 
238 238
     /**
239 239
      * Show confirmation of drop and perform actual drop
240
+     * @param boolean $confirm
240 241
      */
241 242
     public function doDrop($confirm)
242 243
     {
Please login to merge, or discard this patch.
src/controllers/PrivilegesController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -258,7 +258,7 @@
 block discarded – undo
258 258
 
259 259
     /**
260 260
      * Grant permissions on an object to a user
261
-     * @param $confirm To show entry screen
261
+     * @param boolean $confirm To show entry screen
262 262
      * @param $mode 'grant' or 'revoke'
263 263
      * @param $msg (optional) A message to show
264 264
      */
Please login to merge, or discard this patch.