Passed
Push — master ( 085530...c5c03e )
by
unknown
03:51
created
src/Mailcode/Factory/CommandSets/Set/ElseIf.php 1 patch
Spacing   +38 added lines, -38 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_ElseIf extends Mailcode_Factory_CommandSets_IfBase
22 22
 {
23
-    public function elseIf(string $condition, string $type='') : Mailcode_Commands_Command_ElseIf
23
+    public function elseIf (string $condition, string $type = '') : Mailcode_Commands_Command_ElseIf
24 24
     {
25 25
         $command = $this->instantiator->buildIf('ElseIf', $condition, $type);
26 26
         
27
-        if($command instanceof Mailcode_Commands_Command_ElseIf)
27
+        if ($command instanceof Mailcode_Commands_Command_ElseIf)
28 28
         {
29 29
             return $command;
30 30
         }
@@ -32,11 +32,11 @@  discard block
 block discarded – undo
32 32
         throw $this->instantiator->exceptionUnexpectedType('ElseIf', $command);
33 33
     }
34 34
     
35
-    public function var(string $variable, string $operand, string $value, bool $quoteValue=false, bool $insensitive=false) : Mailcode_Commands_Command_ElseIf_Variable
35
+    public function var(string $variable, string $operand, string $value, bool $quoteValue = false, bool $insensitive = false) : Mailcode_Commands_Command_ElseIf_Variable
36 36
     {
37 37
         $command = $this->instantiator->buildIfVar('ElseIf', $variable, $operand, $value, $quoteValue, $insensitive);
38 38
         
39
-        if($command instanceof Mailcode_Commands_Command_ElseIf_Variable)
39
+        if ($command instanceof Mailcode_Commands_Command_ElseIf_Variable)
40 40
         {
41 41
             return $command;
42 42
         }
@@ -44,11 +44,11 @@  discard block
 block discarded – undo
44 44
         throw $this->instantiator->exceptionUnexpectedType('ElseIfVariable', $command);
45 45
     }
46 46
     
47
-    public function varString(string $variable, string $operand, string $value, bool $insensitive=false) : Mailcode_Commands_Command_ElseIf_Variable
47
+    public function varString(string $variable, string $operand, string $value, bool $insensitive = false) : Mailcode_Commands_Command_ElseIf_Variable
48 48
     {
49 49
         $command = $this->instantiator->buildIfVar('ElseIf', $variable, $operand, $value, true, $insensitive);
50 50
         
51
-        if($command instanceof Mailcode_Commands_Command_ElseIf_Variable)
51
+        if ($command instanceof Mailcode_Commands_Command_ElseIf_Variable)
52 52
         {
53 53
             return $command;
54 54
         }
@@ -56,11 +56,11 @@  discard block
 block discarded – undo
56 56
         throw $this->instantiator->exceptionUnexpectedType('ElseIfVarString', $command);
57 57
     }
58 58
     
59
-    public function varEquals(string $variable, string $value, bool $quoteValue=false, bool $insensitive=false) : Mailcode_Commands_Command_ElseIf_Variable
59
+    public function varEquals(string $variable, string $value, bool $quoteValue = false, bool $insensitive = false) : Mailcode_Commands_Command_ElseIf_Variable
60 60
     {
61 61
         $command = $this->instantiator->buildIfVar('ElseIf', $variable, '==', $value, $quoteValue, $insensitive);
62 62
 
63
-        if($command instanceof Mailcode_Commands_Command_ElseIf_Variable)
63
+        if ($command instanceof Mailcode_Commands_Command_ElseIf_Variable)
64 64
         {
65 65
             return $command;
66 66
         }
@@ -68,11 +68,11 @@  discard block
 block discarded – undo
68 68
         throw $this->instantiator->exceptionUnexpectedType('ElseIfVarEquals', $command);
69 69
     }
70 70
 
71
-    public function varEqualsString(string $variable, string $value, bool $insensitive=false) : Mailcode_Commands_Command_ElseIf_Variable
71
+    public function varEqualsString(string $variable, string $value, bool $insensitive = false) : Mailcode_Commands_Command_ElseIf_Variable
72 72
     {
73 73
         $command = $this->instantiator->buildIfVar('ElseIf', $variable, '==', $value, true, $insensitive);
74 74
         
75
-        if($command instanceof Mailcode_Commands_Command_ElseIf_Variable)
75
+        if ($command instanceof Mailcode_Commands_Command_ElseIf_Variable)
76 76
         {
77 77
             return $command;
78 78
         }
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
     {
85 85
         $command = $this->instantiator->buildIfEquals('ElseIf', $variable, $value);
86 86
 
87
-        if($command instanceof Mailcode_Commands_Command_ElseIf_EqualsNumber)
87
+        if ($command instanceof Mailcode_Commands_Command_ElseIf_EqualsNumber)
88 88
         {
89 89
             return $command;
90 90
         }
@@ -92,11 +92,11 @@  discard block
 block discarded – undo
92 92
         throw $this->instantiator->exceptionUnexpectedType('IfEqualsNumber', $command);
93 93
     }
94 94
 
95
-    public function varNotEquals(string $variable, string $value, bool $quoteValue=false, bool $insensitive=false) : Mailcode_Commands_Command_ElseIf_Variable
95
+    public function varNotEquals(string $variable, string $value, bool $quoteValue = false, bool $insensitive = false) : Mailcode_Commands_Command_ElseIf_Variable
96 96
     {
97 97
         $command = $this->instantiator->buildIfVar('ElseIf', $variable, '!=', $value, $quoteValue, $insensitive);
98 98
         
99
-        if($command instanceof Mailcode_Commands_Command_ElseIf_Variable)
99
+        if ($command instanceof Mailcode_Commands_Command_ElseIf_Variable)
100 100
         {
101 101
             return $command;
102 102
         }
@@ -104,11 +104,11 @@  discard block
 block discarded – undo
104 104
         throw $this->instantiator->exceptionUnexpectedType('ElseIfVarNotEquals', $command);
105 105
     }
106 106
     
107
-    public function varNotEqualsString(string $variable, string $value, bool $insensitive=false) : Mailcode_Commands_Command_ElseIf_Variable
107
+    public function varNotEqualsString(string $variable, string $value, bool $insensitive = false) : Mailcode_Commands_Command_ElseIf_Variable
108 108
     {
109 109
         $command = $this->instantiator->buildIfVar('ElseIf', $variable, '!=', $value, true, $insensitive);
110 110
         
111
-        if($command instanceof Mailcode_Commands_Command_ElseIf_Variable)
111
+        if ($command instanceof Mailcode_Commands_Command_ElseIf_Variable)
112 112
         {
113 113
             return $command;
114 114
         }
@@ -123,11 +123,11 @@  discard block
 block discarded – undo
123 123
      * @return Mailcode_Commands_Command_ElseIf_Contains
124 124
      * @throws Mailcode_Factory_Exception
125 125
      */
126
-    public function contains(string $variable, array $searchTerms, bool $caseInsensitive=false) : Mailcode_Commands_Command_ElseIf_Contains
126
+    public function contains(string $variable, array $searchTerms, bool $caseInsensitive = false) : Mailcode_Commands_Command_ElseIf_Contains
127 127
     {
128 128
         $command = $this->instantiator->buildIfContains('ElseIf', $variable, $searchTerms, $caseInsensitive);
129 129
         
130
-        if($command instanceof Mailcode_Commands_Command_ElseIf_Contains)
130
+        if ($command instanceof Mailcode_Commands_Command_ElseIf_Contains)
131 131
         {
132 132
             return $command;
133 133
         }
@@ -142,11 +142,11 @@  discard block
 block discarded – undo
142 142
      * @return Mailcode_Commands_Command_ElseIf_NotContains
143 143
      * @throws Mailcode_Factory_Exception
144 144
      */
145
-    public function notContains(string $variable, array $searchTerms, bool $caseInsensitive=false) : Mailcode_Commands_Command_ElseIf_NotContains
145
+    public function notContains(string $variable, array $searchTerms, bool $caseInsensitive = false) : Mailcode_Commands_Command_ElseIf_NotContains
146 146
     {
147 147
         $command = $this->instantiator->buildIfNotContains('ElseIf', $variable, $searchTerms, $caseInsensitive);
148 148
 
149
-        if($command instanceof Mailcode_Commands_Command_ElseIf_NotContains)
149
+        if ($command instanceof Mailcode_Commands_Command_ElseIf_NotContains)
150 150
         {
151 151
             return $command;
152 152
         }
@@ -162,11 +162,11 @@  discard block
 block discarded – undo
162 162
      * @return Mailcode_Commands_Command_ElseIf_ListContains
163 163
      * @throws Mailcode_Factory_Exception
164 164
      */
165
-    public function listContains(string $variable, array $searchTerms, bool $caseInsensitive=false, bool $regexEnabled=false) : Mailcode_Commands_Command_ElseIf_ListContains
165
+    public function listContains(string $variable, array $searchTerms, bool $caseInsensitive = false, bool $regexEnabled = false) : Mailcode_Commands_Command_ElseIf_ListContains
166 166
     {
167 167
         $command = $this->instantiator->buildIfListContains('ElseIf', $variable, $searchTerms, $caseInsensitive, $regexEnabled);
168 168
 
169
-        if($command instanceof Mailcode_Commands_Command_ElseIf_ListContains)
169
+        if ($command instanceof Mailcode_Commands_Command_ElseIf_ListContains)
170 170
         {
171 171
             return $command;
172 172
         }
@@ -181,11 +181,11 @@  discard block
 block discarded – undo
181 181
      * @return Mailcode_Commands_Command_ElseIf_ListEquals
182 182
      * @throws Mailcode_Factory_Exception
183 183
      */
184
-    public function listEquals(string $variable, array $searchTerms, bool $caseInsensitive=false) : Mailcode_Commands_Command_ElseIf_ListEquals
184
+    public function listEquals(string $variable, array $searchTerms, bool $caseInsensitive = false) : Mailcode_Commands_Command_ElseIf_ListEquals
185 185
     {
186 186
         $command = $this->instantiator->buildIfListContains('ElseIf', $variable, $searchTerms, $caseInsensitive, false, 'list-equals');
187 187
 
188
-        if($command instanceof Mailcode_Commands_Command_ElseIf_ListEquals)
188
+        if ($command instanceof Mailcode_Commands_Command_ElseIf_ListEquals)
189 189
         {
190 190
             return $command;
191 191
         }
@@ -201,11 +201,11 @@  discard block
 block discarded – undo
201 201
      * @return Mailcode_Commands_Command_ElseIf_ListNotContains
202 202
      * @throws Mailcode_Factory_Exception
203 203
      */
204
-    public function listNotContains(string $variable, array $searchTerms, bool $caseInsensitive=false, bool $regexEnabled=false) : Mailcode_Commands_Command_ElseIf_ListNotContains
204
+    public function listNotContains(string $variable, array $searchTerms, bool $caseInsensitive = false, bool $regexEnabled = false) : Mailcode_Commands_Command_ElseIf_ListNotContains
205 205
     {
206 206
         $command = $this->instantiator->buildIfListNotContains('ElseIf', $variable, $searchTerms, $caseInsensitive, $regexEnabled);
207 207
 
208
-        if($command instanceof Mailcode_Commands_Command_ElseIf_ListNotContains)
208
+        if ($command instanceof Mailcode_Commands_Command_ElseIf_ListNotContains)
209 209
         {
210 210
             return $command;
211 211
         }
@@ -221,11 +221,11 @@  discard block
 block discarded – undo
221 221
      * @return Mailcode_Commands_Command_ElseIf_ListBeginsWith
222 222
      * @throws Mailcode_Factory_Exception
223 223
      */
224
-    public function listBeginsWith(string $variable, array $searchTerms, bool $caseInsensitive=false, bool $regexEnabled=false) : Mailcode_Commands_Command_ElseIf_ListBeginsWith
224
+    public function listBeginsWith(string $variable, array $searchTerms, bool $caseInsensitive = false, bool $regexEnabled = false) : Mailcode_Commands_Command_ElseIf_ListBeginsWith
225 225
     {
226 226
         $command = $this->instantiator->buildIfListContains('ElseIf', $variable, $searchTerms, $caseInsensitive, $regexEnabled, 'list-begins-with');
227 227
 
228
-        if($command instanceof Mailcode_Commands_Command_ElseIf_ListBeginsWith)
228
+        if ($command instanceof Mailcode_Commands_Command_ElseIf_ListBeginsWith)
229 229
         {
230 230
             return $command;
231 231
         }
@@ -241,11 +241,11 @@  discard block
 block discarded – undo
241 241
      * @return Mailcode_Commands_Command_ElseIf_ListEndsWith
242 242
      * @throws Mailcode_Factory_Exception
243 243
      */
244
-    public function listEndsWith(string $variable, array $searchTerms, bool $caseInsensitive=false, bool $regexEnabled=false) : Mailcode_Commands_Command_ElseIf_ListEndsWith
244
+    public function listEndsWith(string $variable, array $searchTerms, bool $caseInsensitive = false, bool $regexEnabled = false) : Mailcode_Commands_Command_ElseIf_ListEndsWith
245 245
     {
246 246
         $command = $this->instantiator->buildIfListContains('ElseIf', $variable, $searchTerms, $caseInsensitive, $regexEnabled, 'list-ends-with');
247 247
 
248
-        if($command instanceof Mailcode_Commands_Command_ElseIf_ListEndsWith)
248
+        if ($command instanceof Mailcode_Commands_Command_ElseIf_ListEndsWith)
249 249
         {
250 250
             return $command;
251 251
         }
@@ -253,11 +253,11 @@  discard block
 block discarded – undo
253 253
         throw $this->instantiator->exceptionUnexpectedType('ElseIfListEndsWith', $command);
254 254
     }
255 255
 
256
-    public function beginsWith(string $variable, string $search, bool $caseInsensitive=false) : Mailcode_Commands_Command_ElseIf_BeginsWith
256
+    public function beginsWith(string $variable, string $search, bool $caseInsensitive = false) : Mailcode_Commands_Command_ElseIf_BeginsWith
257 257
     {
258 258
         $command = $this->instantiator->buildIfBeginsWith('ElseIf', $variable, $search, $caseInsensitive);
259 259
         
260
-        if($command instanceof Mailcode_Commands_Command_ElseIf_BeginsWith)
260
+        if ($command instanceof Mailcode_Commands_Command_ElseIf_BeginsWith)
261 261
         {
262 262
             return $command;
263 263
         }
@@ -265,11 +265,11 @@  discard block
 block discarded – undo
265 265
         throw $this->instantiator->exceptionUnexpectedType('ElseIfBeginsWith', $command);
266 266
     }
267 267
     
268
-    public function endsWith(string $variable, string $search, bool $caseInsensitive=false) : Mailcode_Commands_Command_ElseIf_EndsWith
268
+    public function endsWith(string $variable, string $search, bool $caseInsensitive = false) : Mailcode_Commands_Command_ElseIf_EndsWith
269 269
     {
270 270
         $command = $this->instantiator->buildIfEndsWith('ElseIf', $variable, $search, $caseInsensitive);
271 271
         
272
-        if($command instanceof Mailcode_Commands_Command_ElseIf_EndsWith)
272
+        if ($command instanceof Mailcode_Commands_Command_ElseIf_EndsWith)
273 273
         {
274 274
             return $command;
275 275
         }
@@ -281,7 +281,7 @@  discard block
 block discarded – undo
281 281
     {
282 282
         $command = $this->instantiator->buildIfEmpty('ElseIf', $variable);
283 283
         
284
-        if($command instanceof Mailcode_Commands_Command_ElseIf_Empty)
284
+        if ($command instanceof Mailcode_Commands_Command_ElseIf_Empty)
285 285
         {
286 286
             return $command;
287 287
         }
@@ -293,7 +293,7 @@  discard block
 block discarded – undo
293 293
     {
294 294
         $command = $this->instantiator->buildIfNotEmpty('ElseIf', $variable);
295 295
         
296
-        if($command instanceof Mailcode_Commands_Command_ElseIf_NotEmpty)
296
+        if ($command instanceof Mailcode_Commands_Command_ElseIf_NotEmpty)
297 297
         {
298 298
             return $command;
299 299
         }
@@ -305,7 +305,7 @@  discard block
 block discarded – undo
305 305
     {
306 306
         $command = $this->instantiator->buildIfBiggerThan('ElseIf', $variable, $value);
307 307
 
308
-        if($command instanceof Mailcode_Commands_Command_ElseIf_BiggerThan)
308
+        if ($command instanceof Mailcode_Commands_Command_ElseIf_BiggerThan)
309 309
         {
310 310
             return $command;
311 311
         }
@@ -317,7 +317,7 @@  discard block
 block discarded – undo
317 317
     {
318 318
         $command = $this->instantiator->buildIfSmallerThan('ElseIf', $variable, $value);
319 319
 
320
-        if($command instanceof Mailcode_Commands_Command_ElseIf_SmallerThan)
320
+        if ($command instanceof Mailcode_Commands_Command_ElseIf_SmallerThan)
321 321
         {
322 322
             return $command;
323 323
         }
@@ -329,7 +329,7 @@  discard block
 block discarded – undo
329 329
     {
330 330
         $command = $this->instantiator->buildIfEquals('ElseIf', $variable, $value);
331 331
 
332
-        if($command instanceof Mailcode_Commands_Command_ElseIf_EqualsNumber)
332
+        if ($command instanceof Mailcode_Commands_Command_ElseIf_EqualsNumber)
333 333
         {
334 334
             return $command;
335 335
         }
Please login to merge, or discard this patch.