Completed
Pull Request — master (#91)
by Andrew
01:43
created
code/DebugBar.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
 
66 66
     /**
67 67
      * Get the Debug Bar instance
68
-     * @return \DebugBar\StandardDebugBar
68
+     * @return DebugBar\DebugBar|null
69 69
      * @throws Exception
70 70
      * @global array $databaseConfig
71 71
      */
@@ -172,6 +172,9 @@  discard block
 block discarded – undo
172 172
         return self::$showQueries;
173 173
     }
174 174
 
175
+    /**
176
+     * @param boolean $showQueries
177
+     */
175 178
     public static function setShowQueries($showQueries)
176 179
     {
177 180
         self::$showQueries = $showQueries;
Please login to merge, or discard this patch.
code/Proxy/DatabaseProxy.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -40,6 +40,9 @@  discard block
 block discarded – undo
40 40
         return $this->showQueries;
41 41
     }
42 42
 
43
+    /**
44
+     * @param boolean $showQueries
45
+     */
43 46
     public function setShowQueries($showQueries)
44 47
     {
45 48
         $this->showQueries = $showQueries;
@@ -366,6 +369,9 @@  discard block
 block discarded – undo
366 369
         );
367 370
     }
368 371
 
372
+    /**
373
+     * @param integer $errorLevel
374
+     */
369 375
     public function oldQuery($sql, $errorLevel = E_USER_ERROR)
370 376
     {
371 377
         return $this->realConn->query($sql, $errorLevel);
Please login to merge, or discard this patch.