Completed
Pull Request — master (#46)
by Robbie
01:23
created
code/DebugBar.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -157,6 +157,9 @@
 block discarded – undo
157 157
         return self::$showQueries;
158 158
     }
159 159
 
160
+    /**
161
+     * @param boolean $showQueries
162
+     */
160 163
     public static function setShowQueries($showQueries)
161 164
     {
162 165
         self::$showQueries = $showQueries;
Please login to merge, or discard this patch.
code/DebugBarDatabaseNewProxy.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.
code/DebugBarRequestFilter.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
      * @param SS_HTTPRequest $request Request container object
13 13
      * @param Session $session Request session
14 14
      * @param DataModel $model Current DataModel
15
-     * @return boolean Whether to continue processing other filters. Null or true will continue processing (optional)
15
+     * @return boolean|null Whether to continue processing other filters. Null or true will continue processing (optional)
16 16
      */
17 17
     public function preRequest(SS_HTTPRequest $request, Session $session, DataModel $model)
18 18
     {
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
      * @param SS_HTTPRequest $request Request container object
41 41
      * @param SS_HTTPResponse $response Response output object
42 42
      * @param DataModel $model Current DataModel
43
-     * @return boolean Whether to continue processing other filters. Null or true will continue processing (optional)
43
+     * @return boolean|null Whether to continue processing other filters. Null or true will continue processing (optional)
44 44
      */
45 45
     public function postRequest(SS_HTTPRequest $request, SS_HTTPResponse $response, DataModel $model)
46 46
     {
Please login to merge, or discard this patch.