Completed
Push — 2.0 ( 1160ec...acba87 )
by Vermeulen
05:15
created
config/observers.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,6 +30,6 @@
 block discarded – undo
30 30
                 'others'    => []
31 31
             ]
32 32
         ]
33
-        */
33
+         */
34 34
     ]
35 35
 ];
Please login to merge, or discard this patch.
config/monolog.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,6 +27,6 @@
 block discarded – undo
27 27
                 Logger::DEBUG
28 28
             ]
29 29
         ]
30
-        */
30
+         */
31 31
     ]
32 32
 ];
Please login to merge, or discard this patch.
src/Executers/Common.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -269,7 +269,7 @@
 block discarded – undo
269 269
      * 
270 270
      * @link http://php.net/manual/fr/pdostatement.closecursor.php
271 271
      * 
272
-     * @return void
272
+     * @return boolean
273 273
      */
274 274
     public function closeCursor()
275 275
     {
Please login to merge, or discard this patch.
src/Sql.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -251,6 +251,9 @@
 block discarded – undo
251 251
                 public $request = '';
252 252
                 public $error = [];
253 253
                 
254
+                /**
255
+                 * @param string $request
256
+                 */
254 257
                 public function __construct($request, $error)
255 258
                 {
256 259
                     $this->request = $request;
Please login to merge, or discard this patch.
src/CreatePdoDsn.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -189,5 +189,5 @@
 block discarded – undo
189 189
     {
190 190
         self::unknownDsn();
191 191
     }
192
-    */
192
+     */
193 193
 }
Please login to merge, or discard this patch.
src/Observers/Explain.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -159,7 +159,7 @@
 block discarded – undo
159 159
     {
160 160
         $this->monolog->getLogger()->debug(
161 161
             'Type: '.$this->action.' ; '
162
-            .'Query: '.$query. ' ; '
162
+            .'Query: '.$query.' ; '
163 163
             .'Errors: '.print_r($error, true).' ; '
164 164
             .'Explain status: '.$this->explain->status.' ; '
165 165
             .'Explain datas: '.print_r($this->explain->datas, true)
Please login to merge, or discard this patch.
src/Observers/Basic.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -166,7 +166,7 @@
 block discarded – undo
166 166
     {
167 167
         $this->monolog->getLogger()->debug(
168 168
             'Type: '.$this->action.' ; '
169
-            .'Query: '.$query. ' ; '
169
+            .'Query: '.$query.' ; '
170 170
             .'Errors: '.print_r($error, true)
171 171
         );
172 172
     }
Please login to merge, or discard this patch.