Completed
Push — master ( 4a3709...7e8e79 )
by Hung
01:45
created
src/Drivers/MultiResultSetBase.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -110,7 +110,7 @@
 block discarded – undo
110 110
      */
111 111
     public function key()
112 112
     {
113
-        return (int)$this->cursor;
113
+        return (int) $this->cursor;
114 114
     }
115 115
 
116 116
     /**
Please login to merge, or discard this patch.
src/SphinxQL.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -623,7 +623,7 @@
 block discarded – undo
623 623
                 } elseif (is_array($option['value'])) {
624 624
                     array_walk(
625 625
                         $option['value'],
626
-                        function (&$val, $key) {
626
+                        function(&$val, $key) {
627 627
                             $val = $key.'='.$val;
628 628
                         }
629 629
                     );
Please login to merge, or discard this patch.
src/Drivers/Mysqli/Connection.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
             }
51 51
         }
52 52
 
53
-        if (!$suppress_error && ! $this->silence_connection_warning) {
53
+        if (!$suppress_error && !$this->silence_connection_warning) {
54 54
             $conn->real_connect($data['host'], null, null, null, (int) $data['port'], $data['socket']);
55 55
         } else {
56 56
             @ $conn->real_connect($data['host'], null, null, null, (int) $data['port'], $data['socket']);
Please login to merge, or discard this patch.
src/Drivers/ResultSetBase.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -110,7 +110,7 @@
 block discarded – undo
110 110
      */
111 111
     public function key()
112 112
     {
113
-        return (int)$this->cursor;
113
+        return (int) $this->cursor;
114 114
     }
115 115
 
116 116
     /**
Please login to merge, or discard this patch.
src/Drivers/Pdo/ResultSetAdapter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@
 block discarded – undo
46 46
         $fields = array();
47 47
 
48 48
         for ($i = 0; $i < $this->statement->columnCount(); $i++) {
49
-            $fields[] = (object)$this->statement->getColumnMeta($i);
49
+            $fields[] = (object) $this->statement->getColumnMeta($i);
50 50
         }
51 51
 
52 52
         return $fields;
Please login to merge, or discard this patch.
src/Helper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -142,7 +142,7 @@
 block discarded – undo
142 142
         $query .= $name.' ';
143 143
 
144 144
         // user variables must always be processed as arrays
145
-        if ($user_var && ! is_array($value)) {
145
+        if ($user_var && !is_array($value)) {
146 146
             $query .= '= ('.$this->connection->quote($value).')';
147 147
         } elseif (is_array($value)) {
148 148
             $query .= '= ('.implode(', ', $this->connection->quoteArr($value)).')';
Please login to merge, or discard this patch.
src/Drivers/Pdo/Connection.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -36,11 +36,11 @@  discard block
 block discarded – undo
36 36
 
37 37
         $stm = $this->connection->prepare($query);
38 38
 
39
-        try{
39
+        try {
40 40
             $stm->execute();
41 41
         }
42
-        catch(\PDOException $exception){
43
-            throw new DatabaseException($exception->getMessage() . ' [' . $query . ']');
42
+        catch (\PDOException $exception) {
43
+            throw new DatabaseException($exception->getMessage().' ['.$query.']');
44 44
         }
45 45
 
46 46
         return ResultSet::make($stm);
@@ -56,17 +56,17 @@  discard block
 block discarded – undo
56 56
 
57 57
         $dsn = 'mysql:';
58 58
         if (isset($params['host']) && $params['host'] != '') {
59
-            $dsn .= 'host=' . $params['host'] . ';';
59
+            $dsn .= 'host='.$params['host'].';';
60 60
         }
61 61
         if (isset($params['port'])) {
62
-            $dsn .= 'port=' . $params['port'] . ';';
62
+            $dsn .= 'port='.$params['port'].';';
63 63
         }
64 64
         if (isset($params['charset'])) {
65
-            $dsn .= 'charset=' . $params['charset'] . ';';
65
+            $dsn .= 'charset='.$params['charset'].';';
66 66
         }
67 67
 
68 68
         if (isset($params['socket']) && $params['socket'] != '') {
69
-            $dsn .= 'unix_socket=' . $params['socket'] . ';';
69
+            $dsn .= 'unix_socket='.$params['socket'].';';
70 70
         }
71 71
 
72 72
         try {
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
         try {
110 110
             $statement = $this->connection->query(implode(';', $queue));
111 111
         } catch (\PDOException $exception) {
112
-            throw new DatabaseException($exception->getMessage() .' [ '.implode(';', $queue).']');
112
+            throw new DatabaseException($exception->getMessage().' [ '.implode(';', $queue).']');
113 113
         }
114 114
 
115 115
         return MultiResultSet::make($statement);
Please login to merge, or discard this patch.