Completed
Pull Request — master (#66)
by Deven
65:22
created
src/Components/AlterOperation.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -223,7 +223,7 @@  discard block
 block discarded – undo
223 223
                     // We have reached the end of ALTER operation and suddenly found
224 224
                     // a start to new statement, but have not find a delimiter between them
225 225
 
226
-                    if (! $token->value == 'SET' && $list->tokens[$list->idx - 1]->value == 'CHARACTER') {
226
+                    if (!$token->value == 'SET' && $list->tokens[$list->idx - 1]->value == 'CHARACTER') {
227 227
                         $parser->error(
228 228
                             __('A new statement was found, but no delimiter between it and the previous one.'),
229 229
                             $token
@@ -255,9 +255,9 @@  discard block
 block discarded – undo
255 255
      */
256 256
     public static function build($component, array $options = array())
257 257
     {
258
-        $ret = $component->options . ' ';
258
+        $ret = $component->options.' ';
259 259
         if ((isset($component->field)) && ($component->field !== '')) {
260
-            $ret .= $component->field . ' ';
260
+            $ret .= $component->field.' ';
261 261
         }
262 262
         $ret .= TokensList::build($component->unknown);
263 263
         return $ret;
Please login to merge, or discard this patch.