Test Failed
Branch develop (eaf877)
by Felipe
11:06
created
src/controllers/RulesController.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
      * Confirm and then actually create a rule
152
+     * @param boolean $confirm
152 153
      */
153 154
     public function createRule($confirm, $msg = '')
154 155
     {
@@ -235,6 +236,7 @@  discard block
 block discarded – undo
235 236
 
236 237
     /**
237 238
      * Show confirmation of drop and perform actual drop
239
+     * @param boolean $confirm
238 240
      */
239 241
     public function doDrop($confirm)
240 242
     {
Please login to merge, or discard this patch.
src/controllers/SchemasController.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -430,6 +430,7 @@
 block discarded – undo
430 430
 
431 431
     /**
432 432
      * Show confirmation of drop and perform actual drop
433
+     * @param boolean $confirm
433 434
      */
434 435
     public function doDrop($confirm)
435 436
     {
Please login to merge, or discard this patch.
src/controllers/SequencesController.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -379,6 +379,7 @@
 block discarded – undo
379 379
 
380 380
     /**
381 381
      * Drop a sequence
382
+     * @param boolean $confirm
382 383
      */
383 384
     public function doDrop($confirm, $msg = '')
384 385
     {
Please login to merge, or discard this patch.
src/controllers/SqleditController.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -119,6 +119,7 @@
 block discarded – undo
119 119
 
120 120
     /**
121 121
      * Private function to display server and list of databases
122
+     * @param string $action
122 123
      */
123 124
     public function _printConnection($action)
124 125
     {
Please login to merge, or discard this patch.
src/controllers/TablesController.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -665,6 +665,7 @@  discard block
 block discarded – undo
665 665
      * Dsiplay a screen where user can create a table from an existing one.
666 666
      * We don't have to check if pg supports schema cause create table like
667 667
      * is available under pg 7.4+ which has schema.
668
+     * @param boolean $confirm
668 669
      */
669 670
     public function doCreateLike($confirm, $msg = '')
670 671
     {
@@ -779,6 +780,7 @@  discard block
 block discarded – undo
779 780
 
780 781
     /**
781 782
      * Ask for select parameters and perform select
783
+     * @param boolean $confirm
782 784
      */
783 785
     public function doSelectRows($confirm, $msg = '')
784 786
     {
@@ -905,6 +907,7 @@  discard block
 block discarded – undo
905 907
 
906 908
     /**
907 909
      * Ask for insert parameters and then actually insert row
910
+     * @param boolean $confirm
908 911
      */
909 912
     public function doInsertRow($confirm, $msg = '')
910 913
     {
@@ -1052,6 +1055,7 @@  discard block
 block discarded – undo
1052 1055
 
1053 1056
     /**
1054 1057
      * Show confirmation of empty and perform actual empty
1058
+     * @param boolean $confirm
1055 1059
      */
1056 1060
     public function doEmpty($confirm)
1057 1061
     {
@@ -1120,6 +1124,7 @@  discard block
 block discarded – undo
1120 1124
 
1121 1125
     /**
1122 1126
      * Show confirmation of drop and perform actual drop
1127
+     * @param boolean $confirm
1123 1128
      */
1124 1129
     public function doDrop($confirm)
1125 1130
     {
Please login to merge, or discard this patch.
src/controllers/TablespacesController.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -255,6 +255,7 @@
 block discarded – undo
255 255
 
256 256
     /**
257 257
      * Show confirmation of drop and perform actual drop
258
+     * @param boolean $confirm
258 259
      */
259 260
     public function doDrop($confirm)
260 261
     {
Please login to merge, or discard this patch.
src/controllers/TblpropertiesController.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -840,6 +840,7 @@
 block discarded – undo
840 840
 
841 841
     /**
842 842
      * Show confirmation of drop column and perform actual drop
843
+     * @param boolean $confirm
843 844
      */
844 845
     public function doDrop($confirm)
845 846
     {
Please login to merge, or discard this patch.
src/controllers/TriggersController.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -294,6 +294,7 @@  discard block
 block discarded – undo
294 294
 
295 295
     /**
296 296
      * Show confirmation of drop and perform actual drop
297
+     * @param boolean $confirm
297 298
      */
298 299
     public function doDrop($confirm)
299 300
     {
@@ -330,6 +331,7 @@  discard block
 block discarded – undo
330 331
 
331 332
     /**
332 333
      * Show confirmation of enable trigger and perform enabling the trigger
334
+     * @param boolean $confirm
333 335
      */
334 336
     public function doEnable($confirm)
335 337
     {
@@ -365,6 +367,7 @@  discard block
 block discarded – undo
365 367
 
366 368
     /**
367 369
      * Show confirmation of disable trigger and perform disabling the trigger
370
+     * @param boolean $confirm
368 371
      */
369 372
     public function doDisable($confirm)
370 373
     {
Please login to merge, or discard this patch.
src/controllers/TypesController.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -324,6 +324,7 @@
 block discarded – undo
324 324
 
325 325
     /**
326 326
      * Show confirmation of drop and perform actual drop
327
+     * @param boolean $confirm
327 328
      */
328 329
     public function doDrop($confirm)
329 330
     {
Please login to merge, or discard this patch.