@@ -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_Contains |
|
| 157 | + public function notContains(string $variable, array $searchTerms, bool $caseInsensitive = false) : Mailcode_Commands_Command_If_Contains |
|
| 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 | } |
@@ -166,11 +166,11 @@ discard block |
||
| 166 | 166 | throw $this->instantiator->exceptionUnexpectedType('IfNotContains', $command); |
| 167 | 167 | } |
| 168 | 168 | |
| 169 | - public function beginsWith(string $variable, string $search, bool $caseInsensitive=false) : Mailcode_Commands_Command_If_BeginsWith |
|
| 169 | + public function beginsWith(string $variable, string $search, bool $caseInsensitive = false) : Mailcode_Commands_Command_If_BeginsWith |
|
| 170 | 170 | { |
| 171 | 171 | $command = $this->instantiator->buildIfBeginsWith('If', $variable, $search, $caseInsensitive); |
| 172 | 172 | |
| 173 | - if($command instanceof Mailcode_Commands_Command_If_BeginsWith) |
|
| 173 | + if ($command instanceof Mailcode_Commands_Command_If_BeginsWith) |
|
| 174 | 174 | { |
| 175 | 175 | return $command; |
| 176 | 176 | } |
@@ -178,11 +178,11 @@ discard block |
||
| 178 | 178 | throw $this->instantiator->exceptionUnexpectedType('IfBeginsWith', $command); |
| 179 | 179 | } |
| 180 | 180 | |
| 181 | - public function endsWith(string $variable, string $search, bool $caseInsensitive=false) : Mailcode_Commands_Command_If_EndsWith |
|
| 181 | + public function endsWith(string $variable, string $search, bool $caseInsensitive = false) : Mailcode_Commands_Command_If_EndsWith |
|
| 182 | 182 | { |
| 183 | 183 | $command = $this->instantiator->buildIfEndsWith('If', $variable, $search, $caseInsensitive); |
| 184 | 184 | |
| 185 | - if($command instanceof Mailcode_Commands_Command_If_EndsWith) |
|
| 185 | + if ($command instanceof Mailcode_Commands_Command_If_EndsWith) |
|
| 186 | 186 | { |
| 187 | 187 | return $command; |
| 188 | 188 | } |
@@ -194,7 +194,7 @@ discard block |
||
| 194 | 194 | { |
| 195 | 195 | $command = $this->instantiator->buildIfBiggerThan('If', $variable, $value); |
| 196 | 196 | |
| 197 | - if($command instanceof Mailcode_Commands_Command_If_BiggerThan) |
|
| 197 | + if ($command instanceof Mailcode_Commands_Command_If_BiggerThan) |
|
| 198 | 198 | { |
| 199 | 199 | return $command; |
| 200 | 200 | } |
@@ -206,7 +206,7 @@ discard block |
||
| 206 | 206 | { |
| 207 | 207 | $command = $this->instantiator->buildIfSmallerThan('If', $variable, $value); |
| 208 | 208 | |
| 209 | - if($command instanceof Mailcode_Commands_Command_If_SmallerThan) |
|
| 209 | + if ($command instanceof Mailcode_Commands_Command_If_SmallerThan) |
|
| 210 | 210 | { |
| 211 | 211 | return $command; |
| 212 | 212 | } |
@@ -218,7 +218,7 @@ discard block |
||
| 218 | 218 | { |
| 219 | 219 | $command = $this->instantiator->buildIfEquals('If', $variable, $value); |
| 220 | 220 | |
| 221 | - if($command instanceof Mailcode_Commands_Command_If_EqualsNumber) |
|
| 221 | + if ($command instanceof Mailcode_Commands_Command_If_EqualsNumber) |
|
| 222 | 222 | { |
| 223 | 223 | return $command; |
| 224 | 224 | } |
@@ -33,7 +33,7 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 | } |
@@ -20,11 +20,11 @@ discard block |
||
| 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 |
||
| 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 | } |
@@ -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 beginsWith(string $variable, string $search, bool $caseInsensitive=false) : Mailcode_Commands_Command_ElseIf_BeginsWith |
|
| 145 | + public function beginsWith(string $variable, string $search, bool $caseInsensitive = false) : Mailcode_Commands_Command_ElseIf_BeginsWith |
|
| 146 | 146 | { |
| 147 | 147 | $command = $this->instantiator->buildIfBeginsWith('ElseIf', $variable, $search, $caseInsensitive); |
| 148 | 148 | |
| 149 | - if($command instanceof Mailcode_Commands_Command_ElseIf_BeginsWith) |
|
| 149 | + if ($command instanceof Mailcode_Commands_Command_ElseIf_BeginsWith) |
|
| 150 | 150 | { |
| 151 | 151 | return $command; |
| 152 | 152 | } |
@@ -154,11 +154,11 @@ discard block |
||
| 154 | 154 | throw $this->instantiator->exceptionUnexpectedType('ElseIfBeginsWith', $command); |
| 155 | 155 | } |
| 156 | 156 | |
| 157 | - public function endsWith(string $variable, string $search, bool $caseInsensitive=false) : Mailcode_Commands_Command_ElseIf_EndsWith |
|
| 157 | + public function endsWith(string $variable, string $search, bool $caseInsensitive = false) : Mailcode_Commands_Command_ElseIf_EndsWith |
|
| 158 | 158 | { |
| 159 | 159 | $command = $this->instantiator->buildIfEndsWith('ElseIf', $variable, $search, $caseInsensitive); |
| 160 | 160 | |
| 161 | - if($command instanceof Mailcode_Commands_Command_ElseIf_EndsWith) |
|
| 161 | + if ($command instanceof Mailcode_Commands_Command_ElseIf_EndsWith) |
|
| 162 | 162 | { |
| 163 | 163 | return $command; |
| 164 | 164 | } |
@@ -170,7 +170,7 @@ discard block |
||
| 170 | 170 | { |
| 171 | 171 | $command = $this->instantiator->buildIfEmpty('ElseIf', $variable); |
| 172 | 172 | |
| 173 | - if($command instanceof Mailcode_Commands_Command_ElseIf_Empty) |
|
| 173 | + if ($command instanceof Mailcode_Commands_Command_ElseIf_Empty) |
|
| 174 | 174 | { |
| 175 | 175 | return $command; |
| 176 | 176 | } |
@@ -182,7 +182,7 @@ discard block |
||
| 182 | 182 | { |
| 183 | 183 | $command = $this->instantiator->buildIfNotEmpty('ElseIf', $variable); |
| 184 | 184 | |
| 185 | - if($command instanceof Mailcode_Commands_Command_ElseIf_NotEmpty) |
|
| 185 | + if ($command instanceof Mailcode_Commands_Command_ElseIf_NotEmpty) |
|
| 186 | 186 | { |
| 187 | 187 | return $command; |
| 188 | 188 | } |
@@ -194,7 +194,7 @@ discard block |
||
| 194 | 194 | { |
| 195 | 195 | $command = $this->instantiator->buildIfBiggerThan('ElseIf', $variable, $value); |
| 196 | 196 | |
| 197 | - if($command instanceof Mailcode_Commands_Command_ElseIf_BiggerThan) |
|
| 197 | + if ($command instanceof Mailcode_Commands_Command_ElseIf_BiggerThan) |
|
| 198 | 198 | { |
| 199 | 199 | return $command; |
| 200 | 200 | } |
@@ -206,7 +206,7 @@ discard block |
||
| 206 | 206 | { |
| 207 | 207 | $command = $this->instantiator->buildIfSmallerThan('ElseIf', $variable, $value); |
| 208 | 208 | |
| 209 | - if($command instanceof Mailcode_Commands_Command_ElseIf_SmallerThan) |
|
| 209 | + if ($command instanceof Mailcode_Commands_Command_ElseIf_SmallerThan) |
|
| 210 | 210 | { |
| 211 | 211 | return $command; |
| 212 | 212 | } |
@@ -218,7 +218,7 @@ discard block |
||
| 218 | 218 | { |
| 219 | 219 | $command = $this->instantiator->buildIfEquals('ElseIf', $variable, $value); |
| 220 | 220 | |
| 221 | - if($command instanceof Mailcode_Commands_Command_ElseIf_EqualsNumber) |
|
| 221 | + if ($command instanceof Mailcode_Commands_Command_ElseIf_EqualsNumber) |
|
| 222 | 222 | { |
| 223 | 223 | return $command; |
| 224 | 224 | } |
@@ -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,17 +113,17 @@ 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 | } |
| 120 | 120 | |
| 121 | - public function buildIfBeginsWith(string $ifType, string $variable, string $search, bool $caseInsensitive=false) : Mailcode_Commands_IfBase |
|
| 121 | + public function buildIfBeginsWith(string $ifType, string $variable, string $search, bool $caseInsensitive = false) : Mailcode_Commands_IfBase |
|
| 122 | 122 | { |
| 123 | 123 | return $this->buildIfSearch($ifType, 'begins-with', $variable, $search, $caseInsensitive); |
| 124 | 124 | } |
| 125 | 125 | |
| 126 | - public function buildIfEndsWith(string $ifType, string $variable, string $search, bool $caseInsensitive=false) : Mailcode_Commands_IfBase |
|
| 126 | + public function buildIfEndsWith(string $ifType, string $variable, string $search, bool $caseInsensitive = false) : Mailcode_Commands_IfBase |
|
| 127 | 127 | { |
| 128 | 128 | return $this->buildIfSearch($ifType, 'ends-with', $variable, $search, $caseInsensitive); |
| 129 | 129 | } |
@@ -173,11 +173,11 @@ discard block |
||
| 173 | 173 | ); |
| 174 | 174 | } |
| 175 | 175 | |
| 176 | - private function buildIfSearch(string $ifType, string $subType, string $variable, string $search, bool $caseInsensitive=false) : Mailcode_Commands_IfBase |
|
| 176 | + private function buildIfSearch(string $ifType, string $subType, string $variable, string $search, bool $caseInsensitive = false) : Mailcode_Commands_IfBase |
|
| 177 | 177 | { |
| 178 | 178 | $keyword = ' '; |
| 179 | 179 | |
| 180 | - if($caseInsensitive) |
|
| 180 | + if ($caseInsensitive) |
|
| 181 | 181 | { |
| 182 | 182 | $keyword = ' '.Mailcode_Commands_Keywords::TYPE_INSENSITIVE; |
| 183 | 183 | } |
@@ -206,7 +206,7 @@ discard block |
||
| 206 | 206 | |
| 207 | 207 | public function checkCommand(Mailcode_Commands_Command $command) : void |
| 208 | 208 | { |
| 209 | - if($command->isValid()) |
|
| 209 | + if ($command->isValid()) |
|
| 210 | 210 | { |
| 211 | 211 | return; |
| 212 | 212 | } |
@@ -53,7 +53,7 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 | } |
@@ -32,7 +32,7 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 | } |
@@ -17,7 +17,7 @@ discard block |
||
| 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 |
||
| 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> |