@@ -20,11 +20,11 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 | } |
@@ -20,11 +20,11 @@ discard block |
||
| 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 |
||
| 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) : Mailcode_Commands_Command_ElseIf_Variable |
|
| 35 | + public function var(string $variable, string $operand, string $value, bool $quoteValue = false) : Mailcode_Commands_Command_ElseIf_Variable |
|
| 36 | 36 | { |
| 37 | 37 | $command = $this->instantiator->buildIfVar('ElseIf', $variable, $operand, $value, $quoteValue); |
| 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 | } |
@@ -48,7 +48,7 @@ discard block |
||
| 48 | 48 | { |
| 49 | 49 | $command = $this->instantiator->buildIfVar('ElseIf', $variable, $operand, $value, true); |
| 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 |
||
| 56 | 56 | throw $this->instantiator->exceptionUnexpectedType('ElseIfVarString', $command); |
| 57 | 57 | } |
| 58 | 58 | |
| 59 | - public function varEquals(string $variable, string $value, bool $quoteValue=false) : Mailcode_Commands_Command_ElseIf_Variable |
|
| 59 | + public function varEquals(string $variable, string $value, bool $quoteValue = false) : Mailcode_Commands_Command_ElseIf_Variable |
|
| 60 | 60 | { |
| 61 | 61 | $command = $this->instantiator->buildIfVar('ElseIf', $variable, '==', $value, $quoteValue); |
| 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 | } |
@@ -72,7 +72,7 @@ discard block |
||
| 72 | 72 | { |
| 73 | 73 | $command = $this->instantiator->buildIfVar('ElseIf', $variable, '==', $value, true); |
| 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 | } |
@@ -80,11 +80,11 @@ discard block |
||
| 80 | 80 | throw $this->instantiator->exceptionUnexpectedType('ElseIfVarEqualsString', $command); |
| 81 | 81 | } |
| 82 | 82 | |
| 83 | - public function varNotEquals(string $variable, string $value, bool $quoteValue=false) : Mailcode_Commands_Command_ElseIf_Variable |
|
| 83 | + public function varNotEquals(string $variable, string $value, bool $quoteValue = false) : Mailcode_Commands_Command_ElseIf_Variable |
|
| 84 | 84 | { |
| 85 | 85 | $command = $this->instantiator->buildIfVar('ElseIf', $variable, '!=', $value, $quoteValue); |
| 86 | 86 | |
| 87 | - if($command instanceof Mailcode_Commands_Command_ElseIf_Variable) |
|
| 87 | + if ($command instanceof Mailcode_Commands_Command_ElseIf_Variable) |
|
| 88 | 88 | { |
| 89 | 89 | return $command; |
| 90 | 90 | } |
@@ -96,7 +96,7 @@ discard block |
||
| 96 | 96 | { |
| 97 | 97 | $command = $this->instantiator->buildIfVar('ElseIf', $variable, '!=', $value, true); |
| 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 | } |
@@ -111,11 +111,11 @@ discard block |
||
| 111 | 111 | * @return Mailcode_Commands_Command_ElseIf_Contains |
| 112 | 112 | * @throws Mailcode_Factory_Exception |
| 113 | 113 | */ |
| 114 | - public function contains(string $variable, array $searchTerms, bool $caseInsensitive=false) : Mailcode_Commands_Command_ElseIf_Contains |
|
| 114 | + public function contains(string $variable, array $searchTerms, bool $caseInsensitive = false) : Mailcode_Commands_Command_ElseIf_Contains |
|
| 115 | 115 | { |
| 116 | 116 | $command = $this->instantiator->buildIfContains('ElseIf', $variable, $searchTerms, $caseInsensitive); |
| 117 | 117 | |
| 118 | - if($command instanceof Mailcode_Commands_Command_ElseIf_Contains) |
|
| 118 | + if ($command instanceof Mailcode_Commands_Command_ElseIf_Contains) |
|
| 119 | 119 | { |
| 120 | 120 | return $command; |
| 121 | 121 | } |
@@ -130,11 +130,11 @@ discard block |
||
| 130 | 130 | * @return Mailcode_Commands_Command_ElseIf_NotContains |
| 131 | 131 | * @throws Mailcode_Factory_Exception |
| 132 | 132 | */ |
| 133 | - public function notContains(string $variable, array $searchTerms, bool $caseInsensitive=false) : Mailcode_Commands_Command_ElseIf_NotContains |
|
| 133 | + public function notContains(string $variable, array $searchTerms, bool $caseInsensitive = false) : Mailcode_Commands_Command_ElseIf_NotContains |
|
| 134 | 134 | { |
| 135 | 135 | $command = $this->instantiator->buildIfNotContains('ElseIf', $variable, $searchTerms, $caseInsensitive); |
| 136 | 136 | |
| 137 | - if($command instanceof Mailcode_Commands_Command_ElseIf_NotContains) |
|
| 137 | + if ($command instanceof Mailcode_Commands_Command_ElseIf_NotContains) |
|
| 138 | 138 | { |
| 139 | 139 | return $command; |
| 140 | 140 | } |
@@ -142,11 +142,11 @@ discard block |
||
| 142 | 142 | throw $this->instantiator->exceptionUnexpectedType('ElseIfNotContains', $command); |
| 143 | 143 | } |
| 144 | 144 | |
| 145 | - public function listContains(string $variable, array $searchTerms, bool $caseInsensitive=false) : Mailcode_Commands_Command_ElseIf_ListContains |
|
| 145 | + public function listContains(string $variable, array $searchTerms, bool $caseInsensitive = false) : Mailcode_Commands_Command_ElseIf_ListContains |
|
| 146 | 146 | { |
| 147 | 147 | $command = $this->instantiator->buildIfListContains('ElseIf', $variable, $searchTerms, $caseInsensitive); |
| 148 | 148 | |
| 149 | - if($command instanceof Mailcode_Commands_Command_ElseIf_ListContains) |
|
| 149 | + if ($command instanceof Mailcode_Commands_Command_ElseIf_ListContains) |
|
| 150 | 150 | { |
| 151 | 151 | return $command; |
| 152 | 152 | } |
@@ -154,11 +154,11 @@ discard block |
||
| 154 | 154 | throw $this->instantiator->exceptionUnexpectedType('ElseIfListContains', $command); |
| 155 | 155 | } |
| 156 | 156 | |
| 157 | - public function listNotContains(string $variable, array $searchTerms, bool $caseInsensitive=false) : Mailcode_Commands_Command_ElseIf_ListNotContains |
|
| 157 | + public function listNotContains(string $variable, array $searchTerms, bool $caseInsensitive = false) : Mailcode_Commands_Command_ElseIf_ListNotContains |
|
| 158 | 158 | { |
| 159 | 159 | $command = $this->instantiator->buildIfListNotContains('ElseIf', $variable, $searchTerms, $caseInsensitive); |
| 160 | 160 | |
| 161 | - if($command instanceof Mailcode_Commands_Command_ElseIf_ListNotContains) |
|
| 161 | + if ($command instanceof Mailcode_Commands_Command_ElseIf_ListNotContains) |
|
| 162 | 162 | { |
| 163 | 163 | return $command; |
| 164 | 164 | } |
@@ -166,11 +166,11 @@ discard block |
||
| 166 | 166 | throw $this->instantiator->exceptionUnexpectedType('ElseIfListNotContains', $command); |
| 167 | 167 | } |
| 168 | 168 | |
| 169 | - public function beginsWith(string $variable, string $search, bool $caseInsensitive=false) : Mailcode_Commands_Command_ElseIf_BeginsWith |
|
| 169 | + public function beginsWith(string $variable, string $search, bool $caseInsensitive = false) : Mailcode_Commands_Command_ElseIf_BeginsWith |
|
| 170 | 170 | { |
| 171 | 171 | $command = $this->instantiator->buildIfBeginsWith('ElseIf', $variable, $search, $caseInsensitive); |
| 172 | 172 | |
| 173 | - if($command instanceof Mailcode_Commands_Command_ElseIf_BeginsWith) |
|
| 173 | + if ($command instanceof Mailcode_Commands_Command_ElseIf_BeginsWith) |
|
| 174 | 174 | { |
| 175 | 175 | return $command; |
| 176 | 176 | } |
@@ -178,11 +178,11 @@ discard block |
||
| 178 | 178 | throw $this->instantiator->exceptionUnexpectedType('ElseIfBeginsWith', $command); |
| 179 | 179 | } |
| 180 | 180 | |
| 181 | - public function endsWith(string $variable, string $search, bool $caseInsensitive=false) : Mailcode_Commands_Command_ElseIf_EndsWith |
|
| 181 | + public function endsWith(string $variable, string $search, bool $caseInsensitive = false) : Mailcode_Commands_Command_ElseIf_EndsWith |
|
| 182 | 182 | { |
| 183 | 183 | $command = $this->instantiator->buildIfEndsWith('ElseIf', $variable, $search, $caseInsensitive); |
| 184 | 184 | |
| 185 | - if($command instanceof Mailcode_Commands_Command_ElseIf_EndsWith) |
|
| 185 | + if ($command instanceof Mailcode_Commands_Command_ElseIf_EndsWith) |
|
| 186 | 186 | { |
| 187 | 187 | return $command; |
| 188 | 188 | } |
@@ -194,7 +194,7 @@ discard block |
||
| 194 | 194 | { |
| 195 | 195 | $command = $this->instantiator->buildIfEmpty('ElseIf', $variable); |
| 196 | 196 | |
| 197 | - if($command instanceof Mailcode_Commands_Command_ElseIf_Empty) |
|
| 197 | + if ($command instanceof Mailcode_Commands_Command_ElseIf_Empty) |
|
| 198 | 198 | { |
| 199 | 199 | return $command; |
| 200 | 200 | } |
@@ -206,7 +206,7 @@ discard block |
||
| 206 | 206 | { |
| 207 | 207 | $command = $this->instantiator->buildIfNotEmpty('ElseIf', $variable); |
| 208 | 208 | |
| 209 | - if($command instanceof Mailcode_Commands_Command_ElseIf_NotEmpty) |
|
| 209 | + if ($command instanceof Mailcode_Commands_Command_ElseIf_NotEmpty) |
|
| 210 | 210 | { |
| 211 | 211 | return $command; |
| 212 | 212 | } |
@@ -218,7 +218,7 @@ discard block |
||
| 218 | 218 | { |
| 219 | 219 | $command = $this->instantiator->buildIfBiggerThan('ElseIf', $variable, $value); |
| 220 | 220 | |
| 221 | - if($command instanceof Mailcode_Commands_Command_ElseIf_BiggerThan) |
|
| 221 | + if ($command instanceof Mailcode_Commands_Command_ElseIf_BiggerThan) |
|
| 222 | 222 | { |
| 223 | 223 | return $command; |
| 224 | 224 | } |
@@ -230,7 +230,7 @@ discard block |
||
| 230 | 230 | { |
| 231 | 231 | $command = $this->instantiator->buildIfSmallerThan('ElseIf', $variable, $value); |
| 232 | 232 | |
| 233 | - if($command instanceof Mailcode_Commands_Command_ElseIf_SmallerThan) |
|
| 233 | + if ($command instanceof Mailcode_Commands_Command_ElseIf_SmallerThan) |
|
| 234 | 234 | { |
| 235 | 235 | return $command; |
| 236 | 236 | } |
@@ -242,7 +242,7 @@ discard block |
||
| 242 | 242 | { |
| 243 | 243 | $command = $this->instantiator->buildIfEquals('ElseIf', $variable, $value); |
| 244 | 244 | |
| 245 | - if($command instanceof Mailcode_Commands_Command_ElseIf_EqualsNumber) |
|
| 245 | + if ($command instanceof Mailcode_Commands_Command_ElseIf_EqualsNumber) |
|
| 246 | 246 | { |
| 247 | 247 | return $command; |
| 248 | 248 | } |
@@ -20,11 +20,11 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 | } |
@@ -39,7 +39,7 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 | } |
@@ -176,27 +176,27 @@ |
||
| 176 | 176 | * @return array<string,string> |
| 177 | 177 | * @throws Mailcode_Exception |
| 178 | 178 | */ |
| 179 | - private function parseVarName() : array |
|
| 180 | - { |
|
| 181 | - $tokens = explode('.', ltrim($this->variable->getFullName(), '$')); |
|
| 182 | - |
|
| 183 | - if(count($tokens) === 2) |
|
| 184 | - { |
|
| 185 | - return array( |
|
| 186 | - 'path' => $tokens[0], |
|
| 187 | - 'name' => $tokens[1] |
|
| 188 | - ); |
|
| 189 | - } |
|
| 190 | - |
|
| 191 | - throw new Mailcode_Exception( |
|
| 192 | - 'Invalid variable name for a list property.', |
|
| 193 | - sprintf( |
|
| 194 | - 'Exactly 2 parts are required, variable [%s] has [%s].', |
|
| 195 | - $this->variable->getFullName(), |
|
| 196 | - count($tokens) |
|
| 197 | - ), |
|
| 198 | - self::ERROR_INVALID_LIST_VARIABLE_NAME |
|
| 199 | - ); |
|
| 200 | - } |
|
| 179 | + private function parseVarName() : array |
|
| 180 | + { |
|
| 181 | + $tokens = explode('.', ltrim($this->variable->getFullName(), '$')); |
|
| 182 | + |
|
| 183 | + if(count($tokens) === 2) |
|
| 184 | + { |
|
| 185 | + return array( |
|
| 186 | + 'path' => $tokens[0], |
|
| 187 | + 'name' => $tokens[1] |
|
| 188 | + ); |
|
| 189 | + } |
|
| 190 | + |
|
| 191 | + throw new Mailcode_Exception( |
|
| 192 | + 'Invalid variable name for a list property.', |
|
| 193 | + sprintf( |
|
| 194 | + 'Exactly 2 parts are required, variable [%s] has [%s].', |
|
| 195 | + $this->variable->getFullName(), |
|
| 196 | + count($tokens) |
|
| 197 | + ), |
|
| 198 | + self::ERROR_INVALID_LIST_VARIABLE_NAME |
|
| 199 | + ); |
|
| 200 | + } |
|
| 201 | 201 | } |
| 202 | 202 | |
@@ -69,7 +69,7 @@ discard block |
||
| 69 | 69 | */ |
| 70 | 70 | public function getSign() : string |
| 71 | 71 | { |
| 72 | - if($this->isNotContains()) |
|
| 72 | + if ($this->isNotContains()) |
|
| 73 | 73 | { |
| 74 | 74 | return '!'; |
| 75 | 75 | } |
@@ -86,7 +86,7 @@ discard block |
||
| 86 | 86 | */ |
| 87 | 87 | public function getConnector() |
| 88 | 88 | { |
| 89 | - if($this->isNotContains()) |
|
| 89 | + if ($this->isNotContains()) |
|
| 90 | 90 | { |
| 91 | 91 | return '&&'; |
| 92 | 92 | } |
@@ -102,7 +102,7 @@ discard block |
||
| 102 | 102 | { |
| 103 | 103 | $parts = array(); |
| 104 | 104 | |
| 105 | - foreach($this->searchTerms as $token) |
|
| 105 | + foreach ($this->searchTerms as $token) |
|
| 106 | 106 | { |
| 107 | 107 | $parts[] = $this->renderCommand($token); |
| 108 | 108 | } |
@@ -117,7 +117,7 @@ discard block |
||
| 117 | 117 | */ |
| 118 | 118 | private function renderCommand(Mailcode_Parser_Statement_Tokenizer_Token_StringLiteral $searchTerm) : string |
| 119 | 119 | { |
| 120 | - if($this->isList()) |
|
| 120 | + if ($this->isList()) |
|
| 121 | 121 | { |
| 122 | 122 | $command = $this->renderListCommand($searchTerm); |
| 123 | 123 | } |
@@ -158,7 +158,7 @@ discard block |
||
| 158 | 158 | private function renderRegex(Mailcode_Parser_Statement_Tokenizer_Token_StringLiteral $searchTerm) : string |
| 159 | 159 | { |
| 160 | 160 | $opts = 's'; |
| 161 | - if($this->caseSensitive) |
|
| 161 | + if ($this->caseSensitive) |
|
| 162 | 162 | { |
| 163 | 163 | $opts = 'is'; |
| 164 | 164 | } |
@@ -180,7 +180,7 @@ discard block |
||
| 180 | 180 | { |
| 181 | 181 | $tokens = explode('.', ltrim($this->variable->getFullName(), '$')); |
| 182 | 182 | |
| 183 | - if(count($tokens) === 2) |
|
| 183 | + if (count($tokens) === 2) |
|
| 184 | 184 | { |
| 185 | 185 | return array( |
| 186 | 186 | 'path' => $tokens[0], |
@@ -120,8 +120,7 @@ |
||
| 120 | 120 | if($this->isList()) |
| 121 | 121 | { |
| 122 | 122 | $command = $this->renderListCommand($searchTerm); |
| 123 | - } |
|
| 124 | - else |
|
| 123 | + } else |
|
| 125 | 124 | { |
| 126 | 125 | $command = $this->renderRegularCommand($searchTerm); |
| 127 | 126 | } |
@@ -20,9 +20,9 @@ discard block |
||
| 20 | 20 | */ |
| 21 | 21 | abstract class Mailcode_Translator_Syntax_ApacheVelocity extends Mailcode_Translator_Command |
| 22 | 22 | { |
| 23 | - /** |
|
| 24 | - * @var string[] |
|
| 25 | - */ |
|
| 23 | + /** |
|
| 24 | + * @var string[] |
|
| 25 | + */ |
|
| 26 | 26 | private $regexSpecialChars = array( |
| 27 | 27 | '?', |
| 28 | 28 | '.', |
@@ -47,15 +47,15 @@ discard block |
||
| 47 | 47 | } |
| 48 | 48 | |
| 49 | 49 | /** |
| 50 | - * Filters the string for use in an Apache Velocity (Java) |
|
| 51 | - * regex string: escapes all special characters. |
|
| 52 | - * |
|
| 53 | - * Velocity does its own escaping, so no need to escape special |
|
| 54 | - * characters as if they were a javascript string. |
|
| 55 | - * |
|
| 56 | - * @param string $string |
|
| 57 | - * @return string |
|
| 58 | - */ |
|
| 50 | + * Filters the string for use in an Apache Velocity (Java) |
|
| 51 | + * regex string: escapes all special characters. |
|
| 52 | + * |
|
| 53 | + * Velocity does its own escaping, so no need to escape special |
|
| 54 | + * characters as if they were a javascript string. |
|
| 55 | + * |
|
| 56 | + * @param string $string |
|
| 57 | + * @return string |
|
| 58 | + */ |
|
| 59 | 59 | public function filterRegexString(string $string) : string |
| 60 | 60 | { |
| 61 | 61 | // Special case: previously escaped quotes. |