Completed
Pull Request — master (#37)
by Durgesh
03:15
created
src/Components/PartitionDefinition.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -198,7 +198,7 @@
 block discarded – undo
198 198
     }
199 199
 
200 200
     /**
201
-     * @param PartitionDefinition|PartitionDefinition[] $component The component to be built.
201
+     * @param PartitionDefinition[] $component The component to be built.
202 202
      * @param array                                     $options   Parameters for building.
203 203
      *
204 204
      * @return string
Please login to merge, or discard this patch.
src/Statements/DeleteStatement.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -52,14 +52,14 @@
 block discarded – undo
52 52
      * @var array
53 53
      */
54 54
     public static $CLAUSES = array(
55
-        'DELETE'                        => array('DELETE',      2),
55
+        'DELETE'                        => array('DELETE', 2),
56 56
         // Used for options.
57
-        '_OPTIONS'                      => array('_OPTIONS',    1),
58
-        'FROM'                          => array('FROM',        3),
59
-        'PARTITION'                     => array('PARTITION',   3),
60
-        'WHERE'                         => array('WHERE',       3),
61
-        'ORDER BY'                      => array('ORDER BY',    3),
62
-        'LIMIT'                         => array('LIMIT',       3),
57
+        '_OPTIONS'                      => array('_OPTIONS', 1),
58
+        'FROM'                          => array('FROM', 3),
59
+        'PARTITION'                     => array('PARTITION', 3),
60
+        'WHERE'                         => array('WHERE', 3),
61
+        'ORDER BY'                      => array('ORDER BY', 3),
62
+        'LIMIT'                         => array('LIMIT', 3),
63 63
     );
64 64
 
65 65
     /**
Please login to merge, or discard this patch.
src/Statements/ReplaceStatement.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -53,12 +53,12 @@
 block discarded – undo
53 53
      * @var array
54 54
      */
55 55
     public static $CLAUSES = array(
56
-        'REPLACE'                       => array('REPLACE',     2),
56
+        'REPLACE'                       => array('REPLACE', 2),
57 57
         // Used for options.
58
-        '_OPTIONS'                      => array('_OPTIONS',    1),
59
-        'INTO'                          => array('FROM',        3),
60
-        'VALUES'                        => array('VALUES',      1),
61
-        'SET'                           => array('PARTITION',   3),
58
+        '_OPTIONS'                      => array('_OPTIONS', 1),
59
+        'INTO'                          => array('FROM', 3),
60
+        'VALUES'                        => array('VALUES', 1),
61
+        'SET'                           => array('PARTITION', 3),
62 62
     );
63 63
 
64 64
     /**
Please login to merge, or discard this patch.
src/Statements/SelectStatement.php 1 patch
Spacing   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -83,30 +83,30 @@
 block discarded – undo
83 83
      * @var array
84 84
      */
85 85
     public static $CLAUSES = array(
86
-        'SELECT'                        => array('SELECT',              2),
86
+        'SELECT'                        => array('SELECT', 2),
87 87
         // Used for options.
88
-        '_OPTIONS'                      => array('_OPTIONS',            1),
88
+        '_OPTIONS'                      => array('_OPTIONS', 1),
89 89
         // Used for selected expressions.
90
-        '_SELECT'                       => array('SELECT',              1),
91
-        'FROM'                          => array('FROM',                3),
92
-        'PARTITION'                     => array('PARTITION',           3),
93
-
94
-        'JOIN'                          => array('JOIN',                1),
95
-        'FULL JOIN'                     => array('FULL JOIN',           1),
96
-        'INNER JOIN'                    => array('INNER JOIN',          1),
97
-        'LEFT JOIN'                     => array('LEFT JOIN',           1),
98
-        'LEFT OUTER JOIN'               => array('LEFT OUTER JOIN',     1),
99
-        'RIGHT JOIN'                    => array('RIGHT JOIN',          1),
100
-        'RIGHT OUTER JOIN'              => array('RIGHT OUTER JOIN',    1),
101
-
102
-        'WHERE'                         => array('WHERE',               3),
103
-        'GROUP BY'                      => array('GROUP BY',            3),
104
-        'HAVING'                        => array('HAVING',              3),
105
-        'ORDER BY'                      => array('ORDER BY',            3),
106
-        'LIMIT'                         => array('LIMIT',               3),
107
-        'PROCEDURE'                     => array('PROCEDURE',           3),
108
-        'INTO'                          => array('INTO',                3),
109
-        'UNION'                         => array('UNION',               1),
90
+        '_SELECT'                       => array('SELECT', 1),
91
+        'FROM'                          => array('FROM', 3),
92
+        'PARTITION'                     => array('PARTITION', 3),
93
+
94
+        'JOIN'                          => array('JOIN', 1),
95
+        'FULL JOIN'                     => array('FULL JOIN', 1),
96
+        'INNER JOIN'                    => array('INNER JOIN', 1),
97
+        'LEFT JOIN'                     => array('LEFT JOIN', 1),
98
+        'LEFT OUTER JOIN'               => array('LEFT OUTER JOIN', 1),
99
+        'RIGHT JOIN'                    => array('RIGHT JOIN', 1),
100
+        'RIGHT OUTER JOIN'              => array('RIGHT OUTER JOIN', 1),
101
+
102
+        'WHERE'                         => array('WHERE', 3),
103
+        'GROUP BY'                      => array('GROUP BY', 3),
104
+        'HAVING'                        => array('HAVING', 3),
105
+        'ORDER BY'                      => array('ORDER BY', 3),
106
+        'LIMIT'                         => array('LIMIT', 3),
107
+        'PROCEDURE'                     => array('PROCEDURE', 3),
108
+        'INTO'                          => array('INTO', 3),
109
+        'UNION'                         => array('UNION', 1),
110 110
         // These are available only when `UNION` is present.
111 111
         // 'ORDER BY'                      => array('ORDER BY',    3),
112 112
         // 'LIMIT'                         => array('LIMIT',       3),
Please login to merge, or discard this patch.
src/Statements/SetStatement.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
      * @var array
32 32
      */
33 33
     public static $CLAUSES = array(
34
-        'SET'                           => array('SET',         3),
34
+        'SET'                           => array('SET', 3),
35 35
     );
36 36
 
37 37
     /**
Please login to merge, or discard this patch.
src/Statements/TransactionStatement.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -30,14 +30,14 @@
 block discarded – undo
30 30
      *
31 31
      * @var int
32 32
      */
33
-    const TYPE_BEGIN                    = 1;
33
+    const TYPE_BEGIN = 1;
34 34
 
35 35
     /**
36 36
      * COMMIT and ROLLBACK
37 37
      *
38 38
      * @var int
39 39
      */
40
-    const TYPE_END                      = 2;
40
+    const TYPE_END = 2;
41 41
 
42 42
     /**
43 43
      * The type of this query.
Please login to merge, or discard this patch.
src/Statements/UpdateStatement.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -57,15 +57,15 @@
 block discarded – undo
57 57
      * @var array
58 58
      */
59 59
     public static $CLAUSES = array(
60
-        'UPDATE'                        => array('UPDATE',      2),
60
+        'UPDATE'                        => array('UPDATE', 2),
61 61
         // Used for options.
62
-        '_OPTIONS'                      => array('_OPTIONS',    1),
62
+        '_OPTIONS'                      => array('_OPTIONS', 1),
63 63
         // Used for updated tables.
64
-        '_UPDATE'                       => array('UPDATE',      1),
65
-        'SET'                           => array('SET',         3),
66
-        'WHERE'                         => array('WHERE',       3),
67
-        'ORDER BY'                      => array('ORDER BY',    3),
68
-        'LIMIT'                         => array('LIMIT',       3),
64
+        '_UPDATE'                       => array('UPDATE', 1),
65
+        'SET'                           => array('SET', 3),
66
+        'WHERE'                         => array('WHERE', 3),
67
+        'ORDER BY'                      => array('ORDER BY', 3),
68
+        'LIMIT'                         => array('LIMIT', 3),
69 69
     );
70 70
 
71 71
     /**
Please login to merge, or discard this patch.
src/Token.php 1 patch
Spacing   +31 added lines, -31 removed lines patch added patch discarded remove patch
@@ -30,14 +30,14 @@  discard block
 block discarded – undo
30 30
      *
31 31
      * @var int
32 32
      */
33
-    const TYPE_NONE                     =  0;
33
+    const TYPE_NONE = 0;
34 34
 
35 35
     /**
36 36
      * SQL specific keywords: SELECT, UPDATE, INSERT, etc.
37 37
      *
38 38
      * @var int
39 39
      */
40
-    const TYPE_KEYWORD                  =  1;
40
+    const TYPE_KEYWORD = 1;
41 41
 
42 42
     /**
43 43
      * Any type of legal operator.
@@ -51,14 +51,14 @@  discard block
 block discarded – undo
51 51
      *
52 52
      * @var int
53 53
      */
54
-    const TYPE_OPERATOR                 =  2;
54
+    const TYPE_OPERATOR = 2;
55 55
 
56 56
     /**
57 57
      * Spaces, tabs, new lines, etc.
58 58
      *
59 59
      * @var int
60 60
      */
61
-    const TYPE_WHITESPACE               =  3;
61
+    const TYPE_WHITESPACE = 3;
62 62
 
63 63
     /**
64 64
      * Any type of legal comment.
@@ -80,21 +80,21 @@  discard block
 block discarded – undo
80 80
      *
81 81
      * @var int
82 82
      */
83
-    const TYPE_COMMENT                  =  4;
83
+    const TYPE_COMMENT = 4;
84 84
 
85 85
     /**
86 86
      * Boolean values: true or false.
87 87
      *
88 88
      * @var int
89 89
      */
90
-    const TYPE_BOOL                     =  5;
90
+    const TYPE_BOOL = 5;
91 91
 
92 92
     /**
93 93
      * Numbers: 4, 0x8, 15.16, 23e42, etc.
94 94
      *
95 95
      * @var int
96 96
      */
97
-    const TYPE_NUMBER                   =  6;
97
+    const TYPE_NUMBER = 6;
98 98
 
99 99
     /**
100 100
      * Literal strings: 'string', "test".
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
      *
103 103
      * @var int
104 104
      */
105
-    const TYPE_STRING                   =  7;
105
+    const TYPE_STRING = 7;
106 106
 
107 107
     /**
108 108
      * Database, table names, variables, etc.
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
      *
111 111
      * @var int
112 112
      */
113
-    const TYPE_SYMBOL                   =  8;
113
+    const TYPE_SYMBOL = 8;
114 114
 
115 115
     /**
116 116
      * Delimits an unknown string.
@@ -118,46 +118,46 @@  discard block
 block discarded – undo
118 118
      *
119 119
      * @var int
120 120
      */
121
-    const TYPE_DELIMITER                =  9;
121
+    const TYPE_DELIMITER = 9;
122 122
 
123 123
     // Flags that describe the tokens in more detail.
124 124
     // All keywords must have flag 1 so `Context::isKeyword` method doesn't
125 125
     // require strict comparison.
126
-    const FLAG_KEYWORD_RESERVED         =  2;
127
-    const FLAG_KEYWORD_COMPOSED         =  4;
128
-    const FLAG_KEYWORD_DATA_TYPE        =  8;
126
+    const FLAG_KEYWORD_RESERVED         = 2;
127
+    const FLAG_KEYWORD_COMPOSED         = 4;
128
+    const FLAG_KEYWORD_DATA_TYPE        = 8;
129 129
     const FLAG_KEYWORD_KEY              = 16;
130 130
     const FLAG_KEYWORD_FUNCTION         = 32;
131 131
 
132 132
     // Numbers related flags.
133
-    const FLAG_NUMBER_HEX               =  1;
134
-    const FLAG_NUMBER_FLOAT             =  2;
135
-    const FLAG_NUMBER_APPROXIMATE       =  4;
136
-    const FLAG_NUMBER_NEGATIVE          =  8;
133
+    const FLAG_NUMBER_HEX               = 1;
134
+    const FLAG_NUMBER_FLOAT             = 2;
135
+    const FLAG_NUMBER_APPROXIMATE       = 4;
136
+    const FLAG_NUMBER_NEGATIVE          = 8;
137 137
     const FLAG_NUMBER_BINARY            = 16;
138 138
 
139 139
     // Strings related flags.
140
-    const FLAG_STRING_SINGLE_QUOTES     =  1;
141
-    const FLAG_STRING_DOUBLE_QUOTES     =  2;
140
+    const FLAG_STRING_SINGLE_QUOTES     = 1;
141
+    const FLAG_STRING_DOUBLE_QUOTES     = 2;
142 142
 
143 143
     // Comments related flags.
144
-    const FLAG_COMMENT_BASH             =  1;
145
-    const FLAG_COMMENT_C                =  2;
146
-    const FLAG_COMMENT_SQL              =  4;
147
-    const FLAG_COMMENT_MYSQL_CMD        =  8;
144
+    const FLAG_COMMENT_BASH             = 1;
145
+    const FLAG_COMMENT_C                = 2;
146
+    const FLAG_COMMENT_SQL              = 4;
147
+    const FLAG_COMMENT_MYSQL_CMD        = 8;
148 148
 
149 149
     // Operators related flags.
150
-    const FLAG_OPERATOR_ARITHMETIC      =  1;
151
-    const FLAG_OPERATOR_LOGICAL         =  2;
152
-    const FLAG_OPERATOR_BITWISE         =  4;
153
-    const FLAG_OPERATOR_ASSIGNMENT      =  8;
150
+    const FLAG_OPERATOR_ARITHMETIC      = 1;
151
+    const FLAG_OPERATOR_LOGICAL         = 2;
152
+    const FLAG_OPERATOR_BITWISE         = 4;
153
+    const FLAG_OPERATOR_ASSIGNMENT      = 8;
154 154
     const FLAG_OPERATOR_SQL             = 16;
155 155
 
156 156
     // Symbols related flags.
157
-    const FLAG_SYMBOL_VARIABLE          =  1;
158
-    const FLAG_SYMBOL_BACKTICK          =  2;
159
-    const FLAG_SYMBOL_USER              =  4;
160
-    const FLAG_SYMBOL_SYSTEM            =  8;
157
+    const FLAG_SYMBOL_VARIABLE          = 1;
158
+    const FLAG_SYMBOL_BACKTICK          = 2;
159
+    const FLAG_SYMBOL_USER              = 4;
160
+    const FLAG_SYMBOL_SYSTEM            = 8;
161 161
 
162 162
     /**
163 163
      * The token it its raw string representation.
Please login to merge, or discard this patch.
src/Utils/BufferedQuery.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -295,7 +295,7 @@
 block discarded – undo
295 295
              * statement. This is the reason for the last condition.
296 296
              */
297 297
             if (($i + 9 < $len)
298
-                && (($this->query[$i    ] === 'D') || ($this->query[$i    ] === 'd'))
298
+                && (($this->query[$i] === 'D') || ($this->query[$i] === 'd'))
299 299
                 && (($this->query[$i + 1] === 'E') || ($this->query[$i + 1] === 'e'))
300 300
                 && (($this->query[$i + 2] === 'L') || ($this->query[$i + 2] === 'l'))
301 301
                 && (($this->query[$i + 3] === 'I') || ($this->query[$i + 3] === 'i'))
Please login to merge, or discard this patch.