Test Failed
Push — develop ( 745f3d...db5506 )
by Felipe
10:43 queued 06:47
created
src/xhtml/XHtmlSimpleElement.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -32,6 +32,9 @@  discard block
 block discarded – undo
32 32
         $this->_element = $this->is_element();
33 33
     }
34 34
 
35
+    /**
36
+     * @param string $style
37
+     */
35 38
     public function set_style($style)
36 39
     {
37 40
         $this->set_attribute('style', $style);
@@ -85,6 +88,9 @@  discard block
 block discarded – undo
85 88
         echo $this->fetch();
86 89
     }
87 90
 
91
+    /**
92
+     * @param string $attr
93
+     */
88 94
     public function set_attribute($attr, $value)
89 95
     {
90 96
         $this->_attributes[$attr] = $value;
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
@@ -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/TablespacesController.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/ViewsController.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.