Completed
Push — master ( 008f74...6d49ec )
by Matteo
9s
created
src/Manager.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -173,7 +173,7 @@
 block discarded – undo
173 173
 
174 174
     public function setLastConnection($id)
175 175
     {
176
-        uksort($this->connections, function ($a, $b) use ($id) {
176
+        uksort($this->connections, function($a, $b) use ($id) {
177 177
             if ($a === $id) return 1;
178 178
             if ($b === $id) return -1;
179 179
             return 0;
Please login to merge, or discard this patch.
src/BridgeComponents/ManageConnections.php 2 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -31,6 +31,9 @@
 block discarded – undo
31 31
         return $this->manager->connect("mysql:host={$server};", $username, $password, $options, $newLink);
32 32
     }
33 33
 
34
+    /**
35
+     * @param integer $clientFlags
36
+     */
34 37
     protected function parseClientFlags($clientFlags)
35 38
     {
36 39
         $options = [];
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
 
24 24
     public function connect($server = null, $username = null, $password = null, $newLink = false, $clientFlags = 0)
25 25
     {
26
-        if ($server   === null) {
26
+        if ($server === null) {
27 27
             $server = ini_get('mysql.default_host');
28 28
         }
29 29
         if ($username === null) {
Please login to merge, or discard this patch.
src/BridgeComponents/FetchResults.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -105,7 +105,7 @@
 block discarded – undo
105 105
         $query = $result->getStatement()->queryString;
106 106
 
107 107
         $countResult = $result->getConnection()->query(
108
-            'SELECT COUNT(*) FROM ('. $query .') AS ' . uniqid('count_')
108
+            'SELECT COUNT(*) FROM ('.$query.') AS '.uniqid('count_')
109 109
         );
110 110
 
111 111
         return (int) $countResult->fetch()[0];
Please login to merge, or discard this patch.
src/Mysql.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,6 +40,6 @@
 block discarded – undo
40 40
      */
41 41
     public static function defineGlobals()
42 42
     {
43
-        require_once __DIR__ . '/globals.php';
43
+        require_once __DIR__.'/globals.php';
44 44
     }
45 45
 }
Please login to merge, or discard this patch.