Passed
Pull Request — master (#17)
by
unknown
04:15
created
src/Mailcode/Factory/CommandSets/Set/Show/Date.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
         $cmd = $this->commands->createCommand(
35 35
             'ShowDate',
36 36
             '',
37
-            $variableName . $format . $timezone,
37
+            $variableName.$format.$timezone,
38 38
             sprintf(
39 39
                 '{showdate: %s%s%s}',
40 40
                 $variableName,
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
         $cmd = $this->commands->createCommand(
61 61
             'ShowDate',
62 62
             '',
63
-            $format . $timezone,
63
+            $format.$timezone,
64 64
             sprintf(
65 65
                 '{showdate: %s%s}',
66 66
                 $format,
@@ -103,12 +103,12 @@  discard block
 block discarded – undo
103 103
         $timezone = '';
104 104
         if (!empty($timezoneString)) {
105 105
             $timezone = sprintf(
106
-                ' ' . TimezoneInterface::PARAMETER_NAME . '=%s',
106
+                ' '.TimezoneInterface::PARAMETER_NAME.'=%s',
107 107
                 $this->quoteString($timezoneString)
108 108
             );
109 109
         } else if (!empty($timezoneVariable)) {
110 110
             $timezone = sprintf(
111
-                ' ' . TimezoneInterface::PARAMETER_NAME . '=%s',
111
+                ' '.TimezoneInterface::PARAMETER_NAME.'=%s',
112 112
                 $timezoneVariable
113 113
             );
114 114
         }
Please login to merge, or discard this patch.