Passed
Push — master ( 50dc08...5d6ae0 )
by Sebastian
04:47
created
src/Mailcode/Traits/Commands/Validation/TypeUnsupported.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
 
31 31
     protected function validateSyntax_type_unsupported() : void
32 32
     {
33
-        if($this->supportsType() || empty($this->type))
33
+        if ($this->supportsType() || empty($this->type))
34 34
         {
35 35
             return;
36 36
         }
Please login to merge, or discard this patch.
src/Mailcode/Factory/CommandSets/Set/Show.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
         
34 34
         $this->instantiator->checkCommand($cmd);
35 35
         
36
-        if($cmd instanceof Mailcode_Commands_Command_ShowVariable)
36
+        if ($cmd instanceof Mailcode_Commands_Command_ShowVariable)
37 37
         {
38 38
             return $cmd;
39 39
         }
@@ -41,12 +41,12 @@  discard block
 block discarded – undo
41 41
         throw $this->instantiator->exceptionUnexpectedType('ShowVariable', $cmd);
42 42
     }
43 43
     
44
-    public function date(string $variableName, string $formatString="") : Mailcode_Commands_Command_ShowDate
44
+    public function date(string $variableName, string $formatString = "") : Mailcode_Commands_Command_ShowDate
45 45
     {
46 46
         $variableName = $this->instantiator->filterVariableName($variableName);
47 47
         
48 48
         $format = '';
49
-        if(!empty($formatString))
49
+        if (!empty($formatString))
50 50
         {
51 51
             $format = sprintf(
52 52
                 ' "%s"',
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
         
68 68
         $this->instantiator->checkCommand($cmd);
69 69
         
70
-        if($cmd instanceof Mailcode_Commands_Command_ShowDate)
70
+        if ($cmd instanceof Mailcode_Commands_Command_ShowDate)
71 71
         {
72 72
             return $cmd;
73 73
         }
@@ -75,12 +75,12 @@  discard block
 block discarded – undo
75 75
         throw $this->instantiator->exceptionUnexpectedType('ShowDate', $cmd);
76 76
     }
77 77
 
78
-    public function number(string $variableName, string $formatString="") : Mailcode_Commands_Command_ShowNumber
78
+    public function number(string $variableName, string $formatString = "") : Mailcode_Commands_Command_ShowNumber
79 79
     {
80 80
         $variableName = $this->instantiator->filterVariableName($variableName);
81 81
 
82 82
         $format = '';
83
-        if(!empty($formatString))
83
+        if (!empty($formatString))
84 84
         {
85 85
             $format = sprintf(
86 86
                 ' "%s"',
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
101 101
 
102 102
         $this->instantiator->checkCommand($cmd);
103 103
 
104
-        if($cmd instanceof Mailcode_Commands_Command_ShowNumber)
104
+        if ($cmd instanceof Mailcode_Commands_Command_ShowNumber)
105 105
         {
106 106
             return $cmd;
107 107
         }
@@ -122,7 +122,7 @@  discard block
 block discarded – undo
122 122
         
123 123
         $this->instantiator->checkCommand($cmd);
124 124
         
125
-        if($cmd instanceof Mailcode_Commands_Command_ShowSnippet)
125
+        if ($cmd instanceof Mailcode_Commands_Command_ShowSnippet)
126 126
         {
127 127
             return $cmd;
128 128
         }
Please login to merge, or discard this patch.
src/Mailcode/Factory/CommandSets/Set/Set.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -20,11 +20,11 @@  discard block
 block discarded – undo
20 20
  */
21 21
 class Mailcode_Factory_CommandSets_Set_Set extends Mailcode_Factory_CommandSets_Set
22 22
 {
23
-    public function var(string $variableName, string $value, bool $quoteValue=true) : Mailcode_Commands_Command_SetVariable
23
+    public function var(string $variableName, string $value, bool $quoteValue = true) : Mailcode_Commands_Command_SetVariable
24 24
     {
25 25
         $variableName = $this->instantiator->filterVariableName($variableName);
26 26
         
27
-        if($quoteValue)
27
+        if ($quoteValue)
28 28
         {
29 29
             $value = $this->instantiator->quoteString($value);
30 30
         }
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
         
41 41
         $this->instantiator->checkCommand($cmd);
42 42
         
43
-        if($cmd instanceof Mailcode_Commands_Command_SetVariable)
43
+        if ($cmd instanceof Mailcode_Commands_Command_SetVariable)
44 44
         {
45 45
             return $cmd;
46 46
         }
Please login to merge, or discard this patch.
src/Mailcode/Factory.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
      *
54 54
      * @return Mailcode_Factory_CommandSets_Set_If
55 55
      */
56
-    public static function if() : Mailcode_Factory_CommandSets_Set_If
56
+    public static function if () : Mailcode_Factory_CommandSets_Set_If
57 57
     {
58 58
         return self::$commandSets->if();
59 59
     }
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
      *
64 64
      * @return Mailcode_Factory_CommandSets_Set_ElseIf
65 65
      */
66
-    public static function elseIf() : Mailcode_Factory_CommandSets_Set_ElseIf
66
+    public static function elseIf () : Mailcode_Factory_CommandSets_Set_ElseIf
67 67
     {
68 68
         return self::$commandSets->elseIf();
69 69
     }
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
 
114 114
     public static function init() : void
115 115
     {
116
-        if(!isset(self::$commandSets))
116
+        if (!isset(self::$commandSets))
117 117
         {
118 118
             self::$commandSets = new Mailcode_Factory_CommandSets();
119 119
         }
Please login to merge, or discard this patch.
src/Mailcode/Renderer.php 1 patch
Spacing   +26 added lines, -26 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
     * @param bool $highlighted
33 33
     * @return Mailcode_Renderer
34 34
     */
35
-    public function setOutputHighlighted(bool $highlighted=true) : Mailcode_Renderer
35
+    public function setOutputHighlighted(bool $highlighted = true) : Mailcode_Renderer
36 36
     {
37 37
         $this->highlighted = $highlighted;
38 38
         
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
         return $this->command2string(Mailcode_Factory::show()->snippet($snippetName));
56 56
     }
57 57
     
58
-    public function setVar(string $variableName, string $value, bool $quoteValue=false) : string
58
+    public function setVar(string $variableName, string $value, bool $quoteValue = false) : string
59 59
     {
60 60
         return $this->command2string(Mailcode_Factory::set()->var($variableName, $value, $quoteValue));
61 61
     }
@@ -65,79 +65,79 @@  discard block
 block discarded – undo
65 65
         return $this->command2string(Mailcode_Factory::set()->varString($variableName, $value));
66 66
     }
67 67
     
68
-    public function if(string $condition, string $type='') : string
68
+    public function if (string $condition, string $type = '') : string
69 69
     {
70
-        return $this->command2string(Mailcode_Factory::if()->if($condition, $type));
70
+        return $this->command2string(Mailcode_Factory::if ()->if($condition, $type));
71 71
     }
72 72
     
73
-    public function ifVar(string $variable, string $operand, string $value, bool $quoteValue=false) : string
73
+    public function ifVar(string $variable, string $operand, string $value, bool $quoteValue = false) : string
74 74
     {
75
-        return $this->command2string(Mailcode_Factory::if()->var($variable, $operand, $value, $quoteValue));
75
+        return $this->command2string(Mailcode_Factory::if ()->var($variable, $operand, $value, $quoteValue));
76 76
     }
77 77
 
78 78
     public function ifVarString(string $variable, string $operand, string $value) : string
79 79
     {
80
-        return $this->command2string(Mailcode_Factory::if()->varString($variable, $operand, $value));
80
+        return $this->command2string(Mailcode_Factory::if ()->varString($variable, $operand, $value));
81 81
     }
82 82
     
83
-    public function ifVarEquals(string $variable, string $value, bool $quoteValue=false) : string
83
+    public function ifVarEquals(string $variable, string $value, bool $quoteValue = false) : string
84 84
     {
85
-        return $this->command2string(Mailcode_Factory::if()->varEquals($variable, $value, $quoteValue));
85
+        return $this->command2string(Mailcode_Factory::if ()->varEquals($variable, $value, $quoteValue));
86 86
     }
87 87
 
88 88
     public function ifVarEqualsString(string $variable, string $value) : string
89 89
     {
90
-        return $this->command2string(Mailcode_Factory::if()->varEqualsString($variable, $value));
90
+        return $this->command2string(Mailcode_Factory::if ()->varEqualsString($variable, $value));
91 91
     }
92 92
     
93
-    public function ifVarNotEquals(string $variable, string $value, bool $quoteValue=false) : string
93
+    public function ifVarNotEquals(string $variable, string $value, bool $quoteValue = false) : string
94 94
     {
95
-        return $this->command2string(Mailcode_Factory::if()->varNotEquals($variable, $value, $quoteValue));
95
+        return $this->command2string(Mailcode_Factory::if ()->varNotEquals($variable, $value, $quoteValue));
96 96
     }
97 97
 
98 98
     public function ifVarNotEqualsString(string $variable, string $value) : string
99 99
     {
100
-        return $this->command2string(Mailcode_Factory::if()->varNotEqualsString($variable, $value));
100
+        return $this->command2string(Mailcode_Factory::if ()->varNotEqualsString($variable, $value));
101 101
     }
102 102
     
103
-    public function elseIf(string $condition, string $type='') : string
103
+    public function elseIf (string $condition, string $type = '') : string
104 104
     {
105
-        return $this->command2string(Mailcode_Factory::elseIf()->elseIf($condition, $type));
105
+        return $this->command2string(Mailcode_Factory::elseIf ()->elseIf($condition, $type));
106 106
     }
107 107
     
108
-    public function elseIfVar(string $variable, string $operand, string $value, bool $quoteValue=false) : string
108
+    public function elseIfVar(string $variable, string $operand, string $value, bool $quoteValue = false) : string
109 109
     {
110
-        return $this->command2string(Mailcode_Factory::elseIf()->var($variable, $operand, $value, $quoteValue));
110
+        return $this->command2string(Mailcode_Factory::elseIf ()->var($variable, $operand, $value, $quoteValue));
111 111
     }
112 112
 
113 113
     public function elseIfVarString(string $variable, string $operand, string $value) : string
114 114
     {
115
-        return $this->command2string(Mailcode_Factory::elseIf()->varString($variable, $operand, $value));
115
+        return $this->command2string(Mailcode_Factory::elseIf ()->varString($variable, $operand, $value));
116 116
     }
117 117
     
118
-    public function elseIfVarEquals(string $variable, string $value, bool $quoteValue=false) : string
118
+    public function elseIfVarEquals(string $variable, string $value, bool $quoteValue = false) : string
119 119
     {
120
-        return $this->command2string(Mailcode_Factory::elseIf()->varEquals($variable, $value, $quoteValue));
120
+        return $this->command2string(Mailcode_Factory::elseIf ()->varEquals($variable, $value, $quoteValue));
121 121
     }
122 122
 
123 123
     public function elseIfVarEqualsString(string $variable, string $value) : string
124 124
     {
125
-        return $this->command2string(Mailcode_Factory::elseIf()->varEqualsString($variable, $value));
125
+        return $this->command2string(Mailcode_Factory::elseIf ()->varEqualsString($variable, $value));
126 126
     }
127 127
     
128
-    public function elseIfVarNotEquals(string $variable, string $value, bool $quoteValue=false) : string
128
+    public function elseIfVarNotEquals(string $variable, string $value, bool $quoteValue = false) : string
129 129
     {
130
-        return $this->command2string(Mailcode_Factory::elseIf()->varNotEquals($variable, $value, $quoteValue));
130
+        return $this->command2string(Mailcode_Factory::elseIf ()->varNotEquals($variable, $value, $quoteValue));
131 131
     }
132 132
 
133 133
     public function elseIfVarNotEqualsString(string $variable, string $value) : string
134 134
     {
135
-        return $this->command2string(Mailcode_Factory::elseIf()->varNotEqualsString($variable, $value));
135
+        return $this->command2string(Mailcode_Factory::elseIf ()->varNotEqualsString($variable, $value));
136 136
     }
137 137
     
138 138
     public function else() : string
139 139
     {
140
-        return $this->command2string(Mailcode_Factory::elseIf()->else());
140
+        return $this->command2string(Mailcode_Factory::elseIf ()->else());
141 141
     }
142 142
     
143 143
     public function end() : string
@@ -152,7 +152,7 @@  discard block
 block discarded – undo
152 152
     
153 153
     protected function command2string(Mailcode_Commands_Command $command) : string
154 154
     {
155
-        if($this->highlighted)
155
+        if ($this->highlighted)
156 156
         {
157 157
             return $command->getHighlighted();
158 158
         }
Please login to merge, or discard this patch.
css/index.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
17 17
     $autoload = realpath($root.'/../vendor/autoload.php');
18 18
     
19 19
     // we need the autoloader to be present
20
-    if($autoload === false) 
20
+    if ($autoload === false) 
21 21
     {
22 22
         die('<b>ERROR:</b> Autoloader not present. Run composer update first.');
23 23
     }
@@ -65,19 +65,19 @@  discard block
 block discarded – undo
65 65
                     Mailcode_Factory::misc()->comment('Some comments here'),
66 66
                     Mailcode_Factory::show()->snippet('snippet_name'),
67 67
                     Mailcode_Factory::show()->date('DATE.VARIABLE'),
68
-                    Mailcode_Factory::if()->if('1 + 1 == 2'),
69
-                    Mailcode_Factory::if()->contains('CUSTOMER.NAME', array('John')),
70
-                    Mailcode_Factory::if()->varEquals('NUMBER', '124'),
68
+                    Mailcode_Factory::if ()->if('1 + 1 == 2'),
69
+                    Mailcode_Factory::if ()->contains('CUSTOMER.NAME', array('John')),
70
+                    Mailcode_Factory::if ()->varEquals('NUMBER', '124'),
71 71
                 );
72 72
                 
73
-                $and = Mailcode_Factory::elseIf()->varEqualsString('STRINGVAR', 'John');
73
+                $and = Mailcode_Factory::elseIf ()->varEqualsString('STRINGVAR', 'John');
74 74
                 $and->getLogicKeywords()->appendOR('$STRINGVAR == "Steve"', "variable");
75 75
                 
76 76
                 $commands[] = $and;
77 77
                 
78 78
                 $commands[] = Mailcode_Factory::misc()->end();
79 79
                 
80
-                foreach($commands as $command)
80
+                foreach ($commands as $command)
81 81
                 {
82 82
                     ?>
83 83
                     	<p>
Please login to merge, or discard this patch.
src/Mailcode/Factory/CommandSets/Set/If.php 1 patch
Spacing   +28 added lines, -28 removed lines patch added patch discarded remove patch
@@ -20,11 +20,11 @@  discard block
 block discarded – undo
20 20
  */
21 21
 class Mailcode_Factory_CommandSets_Set_If extends Mailcode_Factory_CommandSets_IfBase
22 22
 {
23
-    public function if(string $condition, string $type='') : Mailcode_Commands_Command_If
23
+    public function if (string $condition, string $type = '') : Mailcode_Commands_Command_If
24 24
     {
25 25
         $command = $this->instantiator->buildIf('If', $condition, $type);
26 26
         
27
-        if($command instanceof Mailcode_Commands_Command_If)
27
+        if ($command instanceof Mailcode_Commands_Command_If)
28 28
         {
29 29
             return $command;
30 30
         }
@@ -32,11 +32,11 @@  discard block
 block discarded – undo
32 32
         throw $this->instantiator->exceptionUnexpectedType('If', $command);
33 33
     }
34 34
     
35
-    public function var(string $variable, string $operand, string $value, bool $quoteValue=false) : Mailcode_Commands_Command_If_Variable
35
+    public function var(string $variable, string $operand, string $value, bool $quoteValue = false) : Mailcode_Commands_Command_If_Variable
36 36
     {
37 37
         $command = $this->instantiator->buildIfVar('If', $variable, $operand, $value, $quoteValue);
38 38
         
39
-        if($command instanceof Mailcode_Commands_Command_If_Variable)
39
+        if ($command instanceof Mailcode_Commands_Command_If_Variable)
40 40
         {
41 41
             return $command;
42 42
         }
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
     {
49 49
         $command = $this->instantiator->buildIfVar('If', $variable, $operand, $value, true);
50 50
         
51
-        if($command instanceof Mailcode_Commands_Command_If_Variable)
51
+        if ($command instanceof Mailcode_Commands_Command_If_Variable)
52 52
         {
53 53
             return $command;
54 54
         }
@@ -56,11 +56,11 @@  discard block
 block discarded – undo
56 56
         throw $this->instantiator->exceptionUnexpectedType('IfVarString', $command);
57 57
     }
58 58
     
59
-    public function varEquals(string $variable, string $value, bool $quoteValue=false) : Mailcode_Commands_Command_If_Variable
59
+    public function varEquals(string $variable, string $value, bool $quoteValue = false) : Mailcode_Commands_Command_If_Variable
60 60
     {
61 61
         $command = $this->instantiator->buildIfVar('If', $variable, '==', $value, $quoteValue);
62 62
         
63
-        if($command instanceof Mailcode_Commands_Command_If_Variable)
63
+        if ($command instanceof Mailcode_Commands_Command_If_Variable)
64 64
         {
65 65
             return $command;
66 66
         }
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
     {
73 73
         $command = $this->instantiator->buildIfVar('If', $variable, '==', $value, true);
74 74
         
75
-        if($command instanceof Mailcode_Commands_Command_If_Variable)
75
+        if ($command instanceof Mailcode_Commands_Command_If_Variable)
76 76
         {
77 77
             return $command;
78 78
         }
@@ -80,11 +80,11 @@  discard block
 block discarded – undo
80 80
         throw $this->instantiator->exceptionUnexpectedType('IfarEqualsString', $command);
81 81
     }
82 82
     
83
-    public function varNotEquals(string $variable, string $value, bool $quoteValue=false) : Mailcode_Commands_Command_If_Variable
83
+    public function varNotEquals(string $variable, string $value, bool $quoteValue = false) : Mailcode_Commands_Command_If_Variable
84 84
     {
85 85
         $command = $this->instantiator->buildIfVar('If', $variable, '!=', $value, $quoteValue);
86 86
         
87
-        if($command instanceof Mailcode_Commands_Command_If_Variable)
87
+        if ($command instanceof Mailcode_Commands_Command_If_Variable)
88 88
         {
89 89
             return $command;
90 90
         }
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
     {
97 97
         $command = $this->instantiator->buildIfVar('If', $variable, '!=', $value, true);
98 98
         
99
-        if($command instanceof Mailcode_Commands_Command_If_Variable)
99
+        if ($command instanceof Mailcode_Commands_Command_If_Variable)
100 100
         {
101 101
             return $command;
102 102
         }
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
     {
109 109
         $command = $this->instantiator->buildIfEmpty('If', $variable);
110 110
         
111
-        if($command instanceof Mailcode_Commands_Command_If_Empty)
111
+        if ($command instanceof Mailcode_Commands_Command_If_Empty)
112 112
         {
113 113
             return $command;
114 114
         }
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
     {
121 121
         $command = $this->instantiator->buildIfNotEmpty('If', $variable);
122 122
         
123
-        if($command instanceof Mailcode_Commands_Command_If_NotEmpty)
123
+        if ($command instanceof Mailcode_Commands_Command_If_NotEmpty)
124 124
         {
125 125
             return $command;
126 126
         }
@@ -135,11 +135,11 @@  discard block
 block discarded – undo
135 135
      * @return Mailcode_Commands_Command_If_Contains
136 136
      * @throws Mailcode_Factory_Exception
137 137
      */
138
-    public function contains(string $variable, array $searchTerms, bool $caseInsensitive=false) : Mailcode_Commands_Command_If_Contains
138
+    public function contains(string $variable, array $searchTerms, bool $caseInsensitive = false) : Mailcode_Commands_Command_If_Contains
139 139
     {
140 140
         $command = $this->instantiator->buildIfContains('If', $variable, $searchTerms, $caseInsensitive);
141 141
         
142
-        if($command instanceof Mailcode_Commands_Command_If_Contains)
142
+        if ($command instanceof Mailcode_Commands_Command_If_Contains)
143 143
         {
144 144
             return $command;
145 145
         }
@@ -154,11 +154,11 @@  discard block
 block discarded – undo
154 154
      * @return Mailcode_Commands_Command_If_NotContains
155 155
      * @throws Mailcode_Factory_Exception
156 156
      */
157
-    public function notContains(string $variable, array $searchTerms, bool $caseInsensitive=false) : Mailcode_Commands_Command_If_NotContains
157
+    public function notContains(string $variable, array $searchTerms, bool $caseInsensitive = false) : Mailcode_Commands_Command_If_NotContains
158 158
     {
159 159
         $command = $this->instantiator->buildIfNotContains('If', $variable, $searchTerms, $caseInsensitive);
160 160
 
161
-        if($command instanceof Mailcode_Commands_Command_If_NotContains)
161
+        if ($command instanceof Mailcode_Commands_Command_If_NotContains)
162 162
         {
163 163
             return $command;
164 164
         }
@@ -173,11 +173,11 @@  discard block
 block discarded – undo
173 173
      * @return Mailcode_Commands_Command_If_ListContains
174 174
      * @throws Mailcode_Factory_Exception
175 175
      */
176
-    public function listContains(string $variable, array $searchTerms, bool $caseInsensitive=false) : Mailcode_Commands_Command_If_ListContains
176
+    public function listContains(string $variable, array $searchTerms, bool $caseInsensitive = false) : Mailcode_Commands_Command_If_ListContains
177 177
     {
178 178
         $command = $this->instantiator->buildIfListContains('If', $variable, $searchTerms, $caseInsensitive);
179 179
 
180
-        if($command instanceof Mailcode_Commands_Command_If_ListContains)
180
+        if ($command instanceof Mailcode_Commands_Command_If_ListContains)
181 181
         {
182 182
             return $command;
183 183
         }
@@ -192,11 +192,11 @@  discard block
 block discarded – undo
192 192
      * @return Mailcode_Commands_Command_If_ListNotContains
193 193
      * @throws Mailcode_Factory_Exception
194 194
      */
195
-    public function listNotContains(string $variable, array $searchTerms, bool $caseInsensitive=false) : Mailcode_Commands_Command_If_ListNotContains
195
+    public function listNotContains(string $variable, array $searchTerms, bool $caseInsensitive = false) : Mailcode_Commands_Command_If_ListNotContains
196 196
     {
197 197
         $command = $this->instantiator->buildIfListNotContains('If', $variable, $searchTerms, $caseInsensitive);
198 198
 
199
-        if($command instanceof Mailcode_Commands_Command_If_ListNotContains)
199
+        if ($command instanceof Mailcode_Commands_Command_If_ListNotContains)
200 200
         {
201 201
             return $command;
202 202
         }
@@ -204,11 +204,11 @@  discard block
 block discarded – undo
204 204
         throw $this->instantiator->exceptionUnexpectedType('IfNotContains', $command);
205 205
     }
206 206
 
207
-    public function beginsWith(string $variable, string $search, bool $caseInsensitive=false) : Mailcode_Commands_Command_If_BeginsWith
207
+    public function beginsWith(string $variable, string $search, bool $caseInsensitive = false) : Mailcode_Commands_Command_If_BeginsWith
208 208
     {
209 209
         $command = $this->instantiator->buildIfBeginsWith('If', $variable, $search, $caseInsensitive);
210 210
         
211
-        if($command instanceof Mailcode_Commands_Command_If_BeginsWith)
211
+        if ($command instanceof Mailcode_Commands_Command_If_BeginsWith)
212 212
         {
213 213
             return $command;
214 214
         }
@@ -216,11 +216,11 @@  discard block
 block discarded – undo
216 216
         throw $this->instantiator->exceptionUnexpectedType('IfBeginsWith', $command);
217 217
     }
218 218
     
219
-    public function endsWith(string $variable, string $search, bool $caseInsensitive=false) : Mailcode_Commands_Command_If_EndsWith
219
+    public function endsWith(string $variable, string $search, bool $caseInsensitive = false) : Mailcode_Commands_Command_If_EndsWith
220 220
     {
221 221
         $command = $this->instantiator->buildIfEndsWith('If', $variable, $search, $caseInsensitive);
222 222
         
223
-        if($command instanceof Mailcode_Commands_Command_If_EndsWith)
223
+        if ($command instanceof Mailcode_Commands_Command_If_EndsWith)
224 224
         {
225 225
             return $command;
226 226
         }
@@ -232,7 +232,7 @@  discard block
 block discarded – undo
232 232
     {
233 233
         $command = $this->instantiator->buildIfBiggerThan('If', $variable, $value);
234 234
 
235
-        if($command instanceof Mailcode_Commands_Command_If_BiggerThan)
235
+        if ($command instanceof Mailcode_Commands_Command_If_BiggerThan)
236 236
         {
237 237
             return $command;
238 238
         }
@@ -244,7 +244,7 @@  discard block
 block discarded – undo
244 244
     {
245 245
         $command = $this->instantiator->buildIfSmallerThan('If', $variable, $value);
246 246
 
247
-        if($command instanceof Mailcode_Commands_Command_If_SmallerThan)
247
+        if ($command instanceof Mailcode_Commands_Command_If_SmallerThan)
248 248
         {
249 249
             return $command;
250 250
         }
@@ -256,7 +256,7 @@  discard block
 block discarded – undo
256 256
     {
257 257
         $command = $this->instantiator->buildIfEquals('If', $variable, $value);
258 258
 
259
-        if($command instanceof Mailcode_Commands_Command_If_EqualsNumber)
259
+        if ($command instanceof Mailcode_Commands_Command_If_EqualsNumber)
260 260
         {
261 261
             return $command;
262 262
         }
Please login to merge, or discard this patch.
src/Mailcode/Factory/Instantiator.php 1 patch
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -20,11 +20,11 @@  discard block
 block discarded – undo
20 20
  */
21 21
 class Mailcode_Factory_Instantiator
22 22
 {
23
-    public function buildIf(string $ifType, string $params, string $type='') : Mailcode_Commands_IfBase
23
+    public function buildIf(string $ifType, string $params, string $type = '') : Mailcode_Commands_IfBase
24 24
     {
25 25
         $stringType = $type;
26 26
         
27
-        if(!empty($type))
27
+        if (!empty($type))
28 28
         {
29 29
             $stringType = ' '.$type;
30 30
         }
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
         
44 44
         $this->checkCommand($command);
45 45
         
46
-        if($command instanceof Mailcode_Commands_IfBase)
46
+        if ($command instanceof Mailcode_Commands_IfBase)
47 47
         {
48 48
             return $command;
49 49
         }
@@ -51,9 +51,9 @@  discard block
 block discarded – undo
51 51
         throw $this->exceptionUnexpectedType('IfBase', $command);
52 52
     }
53 53
     
54
-    public function buildIfVar(string $ifType, string $variable, string $operand, string $value, bool $quoteValue=false) : Mailcode_Commands_IfBase
54
+    public function buildIfVar(string $ifType, string $variable, string $operand, string $value, bool $quoteValue = false) : Mailcode_Commands_IfBase
55 55
     {
56
-        if($quoteValue)
56
+        if ($quoteValue)
57 57
         {
58 58
             $value = $this->quoteString($value);
59 59
         }
@@ -86,11 +86,11 @@  discard block
 block discarded – undo
86 86
      * @return Mailcode_Commands_IfBase
87 87
      * @throws Mailcode_Factory_Exception
88 88
      */
89
-    public function buildIfContains(string $ifType, string $variable, array $searchTerms, bool $caseInsensitive=false, string $containsType='contains') : Mailcode_Commands_IfBase
89
+    public function buildIfContains(string $ifType, string $variable, array $searchTerms, bool $caseInsensitive = false, string $containsType = 'contains') : Mailcode_Commands_IfBase
90 90
     {
91 91
         $keyword = ' ';
92 92
         
93
-        if($caseInsensitive)
93
+        if ($caseInsensitive)
94 94
         {
95 95
             $keyword = ' '.Mailcode_Commands_Keywords::TYPE_INSENSITIVE;
96 96
         }
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
      * @return Mailcode_Commands_IfBase
114 114
      * @throws Mailcode_Factory_Exception
115 115
      */
116
-    public function buildIfNotContains(string $ifType, string $variable, array $searchTerms, bool $caseInsensitive=false) : Mailcode_Commands_IfBase
116
+    public function buildIfNotContains(string $ifType, string $variable, array $searchTerms, bool $caseInsensitive = false) : Mailcode_Commands_IfBase
117 117
     {
118 118
         return $this->buildIfContains($ifType, $variable, $searchTerms, $caseInsensitive, 'not-contains');
119 119
     }
@@ -127,7 +127,7 @@  discard block
 block discarded – undo
127 127
      * @return Mailcode_Commands_IfBase
128 128
      * @throws Mailcode_Factory_Exception
129 129
      */
130
-    public function buildIfListContains(string $ifType, string $variable, array $searchTerms, bool $caseInsensitive=false, string $containsType='list-contains') : Mailcode_Commands_IfBase
130
+    public function buildIfListContains(string $ifType, string $variable, array $searchTerms, bool $caseInsensitive = false, string $containsType = 'list-contains') : Mailcode_Commands_IfBase
131 131
     {
132 132
         return $this->buildIfContains($ifType, $variable, $searchTerms, $caseInsensitive, 'list-contains');
133 133
     }
@@ -141,17 +141,17 @@  discard block
 block discarded – undo
141 141
      * @return Mailcode_Commands_IfBase
142 142
      * @throws Mailcode_Factory_Exception
143 143
      */
144
-    public function buildIfListNotContains(string $ifType, string $variable, array $searchTerms, bool $caseInsensitive=false, string $containsType='list-contains') : Mailcode_Commands_IfBase
144
+    public function buildIfListNotContains(string $ifType, string $variable, array $searchTerms, bool $caseInsensitive = false, string $containsType = 'list-contains') : Mailcode_Commands_IfBase
145 145
     {
146 146
         return $this->buildIfContains($ifType, $variable, $searchTerms, $caseInsensitive, 'list-not-contains');
147 147
     }
148 148
 
149
-    public function buildIfBeginsWith(string $ifType, string $variable, string $search, bool $caseInsensitive=false) : Mailcode_Commands_IfBase
149
+    public function buildIfBeginsWith(string $ifType, string $variable, string $search, bool $caseInsensitive = false) : Mailcode_Commands_IfBase
150 150
     {
151 151
         return $this->buildIfSearch($ifType, 'begins-with', $variable, $search, $caseInsensitive);
152 152
     }
153 153
     
154
-    public function buildIfEndsWith(string $ifType, string $variable, string $search, bool $caseInsensitive=false) : Mailcode_Commands_IfBase
154
+    public function buildIfEndsWith(string $ifType, string $variable, string $search, bool $caseInsensitive = false) : Mailcode_Commands_IfBase
155 155
     {
156 156
         return $this->buildIfSearch($ifType, 'ends-with', $variable, $search, $caseInsensitive);
157 157
     }
@@ -201,11 +201,11 @@  discard block
 block discarded – undo
201 201
         );
202 202
     }
203 203
 
204
-    private function buildIfSearch(string $ifType, string $subType, string $variable, string $search, bool $caseInsensitive=false) : Mailcode_Commands_IfBase
204
+    private function buildIfSearch(string $ifType, string $subType, string $variable, string $search, bool $caseInsensitive = false) : Mailcode_Commands_IfBase
205 205
     {
206 206
         $keyword = ' ';
207 207
         
208
-        if($caseInsensitive)
208
+        if ($caseInsensitive)
209 209
         {
210 210
             $keyword = ' '.Mailcode_Commands_Keywords::TYPE_INSENSITIVE;
211 211
         }
@@ -234,7 +234,7 @@  discard block
 block discarded – undo
234 234
     
235 235
     public function checkCommand(Mailcode_Commands_Command $command) : void
236 236
     {
237
-        if($command->isValid())
237
+        if ($command->isValid())
238 238
         {
239 239
             return;
240 240
         }
Please login to merge, or discard this patch.
src/Mailcode/Translator/Syntax/ApacheVelocity/Base/AbstractIf.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
         // IF type.
40 40
         $method = 'translate'.$this->getIfType($command);
41 41
 
42
-        if(method_exists($this, $method))
42
+        if (method_exists($this, $method))
43 43
         {
44 44
             return strval($this->$method($command));
45 45
         }
@@ -53,11 +53,11 @@  discard block
 block discarded – undo
53 53
         
54 54
         $keywords = $command->getLogicKeywords()->getKeywords();
55 55
         
56
-        foreach($keywords as $keyword)
56
+        foreach ($keywords as $keyword)
57 57
         {
58 58
             $keyCommand = $keyword->getCommand();
59 59
             
60
-            if($keyCommand instanceof Mailcode_Commands_IfBase)
60
+            if ($keyCommand instanceof Mailcode_Commands_IfBase)
61 61
             {
62 62
                 $body .= ' '.$this->getSign($keyword).' '.$this->translateBody($keyCommand);
63 63
             }
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
     
81 81
     protected function getSign(Mailcode_Commands_LogicKeywords_Keyword $keyword) : string
82 82
     {
83
-        switch($keyword->getName())
83
+        switch ($keyword->getName())
84 84
         {
85 85
             case 'and':
86 86
                 return '&&';
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
117 117
     {
118 118
         $sign = '';
119 119
         
120
-        if($notEmpty)
120
+        if ($notEmpty)
121 121
         {
122 122
             $sign = '!';
123 123
         }
@@ -133,12 +133,12 @@  discard block
 block discarded – undo
133 133
     {
134 134
         $params = $command->getParams();
135 135
 
136
-        if(!$params)
136
+        if (!$params)
137 137
         {
138 138
             return '';
139 139
         }
140 140
 
141
-        if($command->hasFreeformParameters())
141
+        if ($command->hasFreeformParameters())
142 142
         {
143 143
             return $params->getStatementString();
144 144
         }
@@ -151,7 +151,7 @@  discard block
 block discarded – undo
151 151
         $test = strtolower(trim($value, '"'));
152 152
         $fullName = $variable->getFullName();
153 153
 
154
-        if(in_array($test, array('true', 'false')))
154
+        if (in_array($test, array('true', 'false')))
155 155
         {
156 156
             $fullName .= '.toLowerCase()';
157 157
             $value = '"'.$test.'"';
@@ -182,7 +182,7 @@  discard block
 block discarded – undo
182 182
     protected function _translateSearch(string $mode, Mailcode_Variables_Variable $variable, bool $caseSensitive, string $searchTerm) : string
183 183
     {
184 184
         $method = $mode.'With';
185
-        if($caseSensitive)
185
+        if ($caseSensitive)
186 186
         {
187 187
             $method = $mode.'WithIgnoreCase';
188 188
         }
Please login to merge, or discard this patch.