@@ -32,29 +32,29 @@ discard block |
||
| 32 | 32 | const ERROR_TOO_MANY_REPLACERS = 65902; |
| 33 | 33 | const ERROR_NO_FORMATTERS_ADDED = 65903; |
| 34 | 34 | |
| 35 | - /** |
|
| 36 | - * @var Mailcode_Parser_Safeguard |
|
| 37 | - */ |
|
| 35 | + /** |
|
| 36 | + * @var Mailcode_Parser_Safeguard |
|
| 37 | + */ |
|
| 38 | 38 | private $safeguard; |
| 39 | 39 | |
| 40 | - /** |
|
| 41 | - * @var Mailcode_Parser_Safeguard_Formatter[] |
|
| 42 | - */ |
|
| 40 | + /** |
|
| 41 | + * @var Mailcode_Parser_Safeguard_Formatter[] |
|
| 42 | + */ |
|
| 43 | 43 | private $formatters = array(); |
| 44 | 44 | |
| 45 | - /** |
|
| 46 | - * @var Mailcode_StringContainer |
|
| 47 | - */ |
|
| 45 | + /** |
|
| 46 | + * @var Mailcode_StringContainer |
|
| 47 | + */ |
|
| 48 | 48 | private $subject; |
| 49 | 49 | |
| 50 | - /** |
|
| 51 | - * @var boolean |
|
| 52 | - */ |
|
| 50 | + /** |
|
| 51 | + * @var boolean |
|
| 52 | + */ |
|
| 53 | 53 | private $applied = false; |
| 54 | 54 | |
| 55 | - /** |
|
| 56 | - * @var boolean |
|
| 57 | - */ |
|
| 55 | + /** |
|
| 56 | + * @var boolean |
|
| 57 | + */ |
|
| 58 | 58 | private $partial = false; |
| 59 | 59 | |
| 60 | 60 | public function __construct(Mailcode_Parser_Safeguard $safeguard, Mailcode_StringContainer $subject) |
@@ -96,17 +96,17 @@ discard block |
||
| 96 | 96 | return $formatter; |
| 97 | 97 | } |
| 98 | 98 | |
| 99 | - /** |
|
| 100 | - * Adds a formatter that will surround all variables with |
|
| 101 | - * markup to highlight them independently of command syntax |
|
| 102 | - * highlighting. |
|
| 103 | - * |
|
| 104 | - * This is used to mark variables visually even after commands |
|
| 105 | - * have been replaced by the target system's post processing. |
|
| 106 | - * Can be combined with a replacer and other formats. |
|
| 107 | - * |
|
| 108 | - * @return Mailcode_Parser_Safeguard_Formatter_Type_MarkVariables |
|
| 109 | - */ |
|
| 99 | + /** |
|
| 100 | + * Adds a formatter that will surround all variables with |
|
| 101 | + * markup to highlight them independently of command syntax |
|
| 102 | + * highlighting. |
|
| 103 | + * |
|
| 104 | + * This is used to mark variables visually even after commands |
|
| 105 | + * have been replaced by the target system's post processing. |
|
| 106 | + * Can be combined with a replacer and other formats. |
|
| 107 | + * |
|
| 108 | + * @return Mailcode_Parser_Safeguard_Formatter_Type_MarkVariables |
|
| 109 | + */ |
|
| 110 | 110 | public function formatWithMarkedVariables() : Mailcode_Parser_Safeguard_Formatter_Type_MarkVariables |
| 111 | 111 | { |
| 112 | 112 | $formatter = $this->createMarkVariables(); |
@@ -200,11 +200,11 @@ discard block |
||
| 200 | 200 | } |
| 201 | 201 | } |
| 202 | 202 | |
| 203 | - /** |
|
| 204 | - * Counts the amount of replacer formatters that have been added. |
|
| 205 | - * |
|
| 206 | - * @return int |
|
| 207 | - */ |
|
| 203 | + /** |
|
| 204 | + * Counts the amount of replacer formatters that have been added. |
|
| 205 | + * |
|
| 206 | + * @return int |
|
| 207 | + */ |
|
| 208 | 208 | private function countReplacers() : int |
| 209 | 209 | { |
| 210 | 210 | $count = 0; |
@@ -220,37 +220,37 @@ discard block |
||
| 220 | 220 | return $count; |
| 221 | 221 | } |
| 222 | 222 | |
| 223 | - /** |
|
| 224 | - * Creates a formatter that adds HTML syntax highlighting |
|
| 225 | - * for all commands in the specified string, intelligently |
|
| 226 | - * checking the location of the commands to ensure that they |
|
| 227 | - * can be syntax highlighted. |
|
| 228 | - * |
|
| 229 | - * For example, commands in HTML attributes will not be |
|
| 230 | - * highlighted, as this would break the HTML. |
|
| 231 | - * |
|
| 232 | - * @return Mailcode_Parser_Safeguard_Formatter_Type_HTMLHighlighting |
|
| 233 | - */ |
|
| 223 | + /** |
|
| 224 | + * Creates a formatter that adds HTML syntax highlighting |
|
| 225 | + * for all commands in the specified string, intelligently |
|
| 226 | + * checking the location of the commands to ensure that they |
|
| 227 | + * can be syntax highlighted. |
|
| 228 | + * |
|
| 229 | + * For example, commands in HTML attributes will not be |
|
| 230 | + * highlighted, as this would break the HTML. |
|
| 231 | + * |
|
| 232 | + * @return Mailcode_Parser_Safeguard_Formatter_Type_HTMLHighlighting |
|
| 233 | + */ |
|
| 234 | 234 | public function createHTMLHighlighting() : Mailcode_Parser_Safeguard_Formatter_Type_HTMLHighlighting |
| 235 | 235 | { |
| 236 | 236 | return new Mailcode_Parser_Safeguard_Formatter_Type_HTMLHighlighting($this); |
| 237 | 237 | } |
| 238 | 238 | |
| 239 | - /** |
|
| 240 | - * Creates the formatter that ensures that all commands |
|
| 241 | - * are placed on a separate line in the subject string. |
|
| 242 | - */ |
|
| 239 | + /** |
|
| 240 | + * Creates the formatter that ensures that all commands |
|
| 241 | + * are placed on a separate line in the subject string. |
|
| 242 | + */ |
|
| 243 | 243 | public function createSingleLines() : Mailcode_Parser_Safeguard_Formatter_Type_SingleLines |
| 244 | 244 | { |
| 245 | 245 | return new Mailcode_Parser_Safeguard_Formatter_Type_SingleLines($this); |
| 246 | 246 | } |
| 247 | 247 | |
| 248 | - /** |
|
| 249 | - * Creates the formatter that replaces all commands by |
|
| 250 | - * their normalized variants. |
|
| 251 | - * |
|
| 252 | - * @return Mailcode_Parser_Safeguard_Formatter_Type_Normalized |
|
| 253 | - */ |
|
| 248 | + /** |
|
| 249 | + * Creates the formatter that replaces all commands by |
|
| 250 | + * their normalized variants. |
|
| 251 | + * |
|
| 252 | + * @return Mailcode_Parser_Safeguard_Formatter_Type_Normalized |
|
| 253 | + */ |
|
| 254 | 254 | public function createNormalized() : Mailcode_Parser_Safeguard_Formatter_Type_Normalized |
| 255 | 255 | { |
| 256 | 256 | return new Mailcode_Parser_Safeguard_Formatter_Type_Normalized($this); |
@@ -273,26 +273,26 @@ discard block |
||
| 273 | 273 | return $this->subject->getString(); |
| 274 | 274 | } |
| 275 | 275 | |
| 276 | - /** |
|
| 277 | - * Whether the formatting is done partially: missing placeholders |
|
| 278 | - * will simply be ignored. |
|
| 279 | - * |
|
| 280 | - * @return bool |
|
| 281 | - */ |
|
| 276 | + /** |
|
| 277 | + * Whether the formatting is done partially: missing placeholders |
|
| 278 | + * will simply be ignored. |
|
| 279 | + * |
|
| 280 | + * @return bool |
|
| 281 | + */ |
|
| 282 | 282 | public function isPartial() : bool |
| 283 | 283 | { |
| 284 | 284 | return $this->partial; |
| 285 | 285 | } |
| 286 | 286 | |
| 287 | - /** |
|
| 288 | - * The formatting will ignore missing placeholders. Use this if the |
|
| 289 | - * formatting will be done on a text that may not contain all of the |
|
| 290 | - * initial placeholders anymore. |
|
| 291 | - * |
|
| 292 | - * This is like the safeguard's makeWholePartial() method. |
|
| 293 | - * |
|
| 294 | - * @return Mailcode_Parser_Safeguard_Formatting |
|
| 295 | - */ |
|
| 287 | + /** |
|
| 288 | + * The formatting will ignore missing placeholders. Use this if the |
|
| 289 | + * formatting will be done on a text that may not contain all of the |
|
| 290 | + * initial placeholders anymore. |
|
| 291 | + * |
|
| 292 | + * This is like the safeguard's makeWholePartial() method. |
|
| 293 | + * |
|
| 294 | + * @return Mailcode_Parser_Safeguard_Formatting |
|
| 295 | + */ |
|
| 296 | 296 | public function makePartial() : Mailcode_Parser_Safeguard_Formatting |
| 297 | 297 | { |
| 298 | 298 | $this->partial = true; |
@@ -24,15 +24,15 @@ discard block |
||
| 24 | 24 | |
| 25 | 25 | const VALIDATION_NOT_A_FORMAT_STRING = 55401; |
| 26 | 26 | |
| 27 | - /** |
|
| 28 | - * The date format string. |
|
| 29 | - * @var string |
|
| 30 | - */ |
|
| 27 | + /** |
|
| 28 | + * The date format string. |
|
| 29 | + * @var string |
|
| 30 | + */ |
|
| 31 | 31 | private $formatString = "Y/m/d"; |
| 32 | 32 | |
| 33 | - /** |
|
| 34 | - * @var Mailcode_Date_FormatInfo |
|
| 35 | - */ |
|
| 33 | + /** |
|
| 34 | + * @var Mailcode_Date_FormatInfo |
|
| 35 | + */ |
|
| 36 | 36 | private $formatInfo; |
| 37 | 37 | |
| 38 | 38 | public function getName() : string |
@@ -88,46 +88,46 @@ discard block |
||
| 88 | 88 | |
| 89 | 89 | protected function validateSyntax_check_format() : void |
| 90 | 90 | { |
| 91 | - $token = $this->params->getInfo()->getTokenByIndex(1); |
|
| 91 | + $token = $this->params->getInfo()->getTokenByIndex(1); |
|
| 92 | 92 | |
| 93 | - // no format specified? Use the default one. |
|
| 94 | - if($token === null) |
|
| 95 | - { |
|
| 96 | - return; |
|
| 97 | - } |
|
| 93 | + // no format specified? Use the default one. |
|
| 94 | + if($token === null) |
|
| 95 | + { |
|
| 96 | + return; |
|
| 97 | + } |
|
| 98 | 98 | |
| 99 | - if($token instanceof Mailcode_Parser_Statement_Tokenizer_Token_StringLiteral) |
|
| 100 | - { |
|
| 101 | - $format = $token->getText(); |
|
| 99 | + if($token instanceof Mailcode_Parser_Statement_Tokenizer_Token_StringLiteral) |
|
| 100 | + { |
|
| 101 | + $format = $token->getText(); |
|
| 102 | 102 | |
| 103 | - $result = $this->formatInfo->validateFormat($format); |
|
| 103 | + $result = $this->formatInfo->validateFormat($format); |
|
| 104 | 104 | |
| 105 | - if($result->isValid()) |
|
| 106 | - { |
|
| 105 | + if($result->isValid()) |
|
| 106 | + { |
|
| 107 | 107 | $this->formatString = $format; |
| 108 | - } |
|
| 109 | - else |
|
| 110 | - { |
|
| 111 | - $this->validationResult->makeError( |
|
| 112 | - $result->getErrorMessage(), |
|
| 113 | - $result->getCode() |
|
| 114 | - ); |
|
| 115 | - } |
|
| 108 | + } |
|
| 109 | + else |
|
| 110 | + { |
|
| 111 | + $this->validationResult->makeError( |
|
| 112 | + $result->getErrorMessage(), |
|
| 113 | + $result->getCode() |
|
| 114 | + ); |
|
| 115 | + } |
|
| 116 | 116 | |
| 117 | - return; |
|
| 118 | - } |
|
| 117 | + return; |
|
| 118 | + } |
|
| 119 | 119 | |
| 120 | - $this->validationResult->makeError( |
|
| 120 | + $this->validationResult->makeError( |
|
| 121 | 121 | t('The second parameter must be a date format string.'), |
| 122 | 122 | self::VALIDATION_NOT_A_FORMAT_STRING |
| 123 | - ); |
|
| 123 | + ); |
|
| 124 | 124 | } |
| 125 | 125 | |
| 126 | - /** |
|
| 127 | - * Retrieves the format string used to format the date. |
|
| 128 | - * |
|
| 129 | - * @return string A PHP compatible date format string. |
|
| 130 | - */ |
|
| 126 | + /** |
|
| 127 | + * Retrieves the format string used to format the date. |
|
| 128 | + * |
|
| 129 | + * @return string A PHP compatible date format string. |
|
| 130 | + */ |
|
| 131 | 131 | public function getFormatString() : string |
| 132 | 132 | { |
| 133 | 133 | return $this->formatString; |
@@ -24,15 +24,15 @@ |
||
| 24 | 24 | { |
| 25 | 25 | const ERROR_UNKNOWN_DATE_FORMAT_CHARACTER = 55501; |
| 26 | 26 | |
| 27 | - /** |
|
| 28 | - * The date format used in the date variable. This is used to convert |
|
| 29 | - * the native date to the format specified in the variable command. |
|
| 30 | - */ |
|
| 27 | + /** |
|
| 28 | + * The date format used in the date variable. This is used to convert |
|
| 29 | + * the native date to the format specified in the variable command. |
|
| 30 | + */ |
|
| 31 | 31 | const DEFAULT_INTERNAL_FORMAT = "yyyy-MM-dd'T'HH:mm:ss.SSSXXX"; |
| 32 | 32 | |
| 33 | - /** |
|
| 34 | - * @var string[]string |
|
| 35 | - */ |
|
| 33 | + /** |
|
| 34 | + * @var string[]string |
|
| 35 | + */ |
|
| 36 | 36 | private $charTable = array( |
| 37 | 37 | 'd' => 'd', |
| 38 | 38 | 'm' => 'M', |
@@ -24,9 +24,9 @@ discard block |
||
| 24 | 24 | { |
| 25 | 25 | const ERROR_CANNOT_RETRIEVE_FIRST_ERROR = 52301; |
| 26 | 26 | |
| 27 | - /** |
|
| 28 | - * @var Mailcode_Commands_Command[] |
|
| 29 | - */ |
|
| 27 | + /** |
|
| 28 | + * @var Mailcode_Commands_Command[] |
|
| 29 | + */ |
|
| 30 | 30 | protected $commands = array(); |
| 31 | 31 | |
| 32 | 32 | /** |
@@ -34,17 +34,17 @@ discard block |
||
| 34 | 34 | */ |
| 35 | 35 | protected $errors = array(); |
| 36 | 36 | |
| 37 | - /** |
|
| 38 | - * @var OperationResult|NULL |
|
| 39 | - */ |
|
| 37 | + /** |
|
| 38 | + * @var OperationResult|NULL |
|
| 39 | + */ |
|
| 40 | 40 | protected $validationResult; |
| 41 | 41 | |
| 42 | - /** |
|
| 43 | - * Adds a command to the collection. |
|
| 44 | - * |
|
| 45 | - * @param Mailcode_Commands_Command $command |
|
| 46 | - * @return Mailcode_Collection |
|
| 47 | - */ |
|
| 42 | + /** |
|
| 43 | + * Adds a command to the collection. |
|
| 44 | + * |
|
| 45 | + * @param Mailcode_Commands_Command $command |
|
| 46 | + * @return Mailcode_Collection |
|
| 47 | + */ |
|
| 48 | 48 | public function addCommand(Mailcode_Commands_Command $command) : Mailcode_Collection |
| 49 | 49 | { |
| 50 | 50 | $this->commands[] = $command; |
@@ -56,21 +56,21 @@ discard block |
||
| 56 | 56 | return $this; |
| 57 | 57 | } |
| 58 | 58 | |
| 59 | - /** |
|
| 60 | - * Whether there are any commands in the collection. |
|
| 61 | - * |
|
| 62 | - * @return bool |
|
| 63 | - */ |
|
| 59 | + /** |
|
| 60 | + * Whether there are any commands in the collection. |
|
| 61 | + * |
|
| 62 | + * @return bool |
|
| 63 | + */ |
|
| 64 | 64 | public function hasCommands() : bool |
| 65 | 65 | { |
| 66 | 66 | return !empty($this->commands); |
| 67 | 67 | } |
| 68 | 68 | |
| 69 | - /** |
|
| 70 | - * Counts the amount of commands in the collection. |
|
| 71 | - * |
|
| 72 | - * @return int |
|
| 73 | - */ |
|
| 69 | + /** |
|
| 70 | + * Counts the amount of commands in the collection. |
|
| 71 | + * |
|
| 72 | + * @return int |
|
| 73 | + */ |
|
| 74 | 74 | public function countCommands() : int |
| 75 | 75 | { |
| 76 | 76 | return count($this->commands); |
@@ -90,9 +90,9 @@ discard block |
||
| 90 | 90 | $this->errors[] = new Mailcode_Collection_Error_Command($command); |
| 91 | 91 | } |
| 92 | 92 | |
| 93 | - /** |
|
| 94 | - * @return Mailcode_Collection_Error[] |
|
| 95 | - */ |
|
| 93 | + /** |
|
| 94 | + * @return Mailcode_Collection_Error[] |
|
| 95 | + */ |
|
| 96 | 96 | public function getErrors() |
| 97 | 97 | { |
| 98 | 98 | $result = $this->getValidationResult(); |
@@ -134,25 +134,25 @@ discard block |
||
| 134 | 134 | return empty($errors); |
| 135 | 135 | } |
| 136 | 136 | |
| 137 | - /** |
|
| 138 | - * Retrieves all commands that were detected, in the exact order |
|
| 139 | - * they were found. |
|
| 140 | - * |
|
| 141 | - * @return \Mailcode\Mailcode_Commands_Command[] |
|
| 142 | - */ |
|
| 137 | + /** |
|
| 138 | + * Retrieves all commands that were detected, in the exact order |
|
| 139 | + * they were found. |
|
| 140 | + * |
|
| 141 | + * @return \Mailcode\Mailcode_Commands_Command[] |
|
| 142 | + */ |
|
| 143 | 143 | public function getCommands() |
| 144 | 144 | { |
| 145 | - return $this->commands; |
|
| 145 | + return $this->commands; |
|
| 146 | 146 | } |
| 147 | 147 | |
| 148 | - /** |
|
| 149 | - * Retrieves all unique commands by their matched |
|
| 150 | - * string hash: this ensures only commands that were |
|
| 151 | - * written the exact same way (including spacing) |
|
| 152 | - * are returned. |
|
| 153 | - * |
|
| 154 | - * @return \Mailcode\Mailcode_Commands_Command[] |
|
| 155 | - */ |
|
| 148 | + /** |
|
| 149 | + * Retrieves all unique commands by their matched |
|
| 150 | + * string hash: this ensures only commands that were |
|
| 151 | + * written the exact same way (including spacing) |
|
| 152 | + * are returned. |
|
| 153 | + * |
|
| 154 | + * @return \Mailcode\Mailcode_Commands_Command[] |
|
| 155 | + */ |
|
| 156 | 156 | public function getGroupedByHash() |
| 157 | 157 | { |
| 158 | 158 | $hashes = array(); |
@@ -170,12 +170,12 @@ discard block |
||
| 170 | 170 | return array_values($hashes); |
| 171 | 171 | } |
| 172 | 172 | |
| 173 | - /** |
|
| 174 | - * Adds several commands at once. |
|
| 175 | - * |
|
| 176 | - * @param Mailcode_Commands_Command[] $commands |
|
| 177 | - * @return Mailcode_Collection |
|
| 178 | - */ |
|
| 173 | + /** |
|
| 174 | + * Adds several commands at once. |
|
| 175 | + * |
|
| 176 | + * @param Mailcode_Commands_Command[] $commands |
|
| 177 | + * @return Mailcode_Collection |
|
| 178 | + */ |
|
| 179 | 179 | public function addCommands(array $commands) : Mailcode_Collection |
| 180 | 180 | { |
| 181 | 181 | foreach($commands as $command) |
@@ -234,11 +234,11 @@ discard block |
||
| 234 | 234 | return false; |
| 235 | 235 | } |
| 236 | 236 | |
| 237 | - /** |
|
| 238 | - * Retrieves only show variable commands in the collection, if any. |
|
| 239 | - * |
|
| 240 | - * @return Mailcode_Commands_Command_ShowVariable[] |
|
| 241 | - */ |
|
| 237 | + /** |
|
| 238 | + * Retrieves only show variable commands in the collection, if any. |
|
| 239 | + * |
|
| 240 | + * @return Mailcode_Commands_Command_ShowVariable[] |
|
| 241 | + */ |
|
| 242 | 242 | public function getShowVariableCommands() |
| 243 | 243 | { |
| 244 | 244 | return $this->getCommandsByClass(Mailcode_Commands_Command_ShowVariable::class); |
@@ -252,11 +252,11 @@ discard block |
||
| 252 | 252 | return $this->getCommandsByClass(Mailcode_Commands_Command_For::class); |
| 253 | 253 | } |
| 254 | 254 | |
| 255 | - /** |
|
| 256 | - * Retrieves only show date commands in the collection, if any. |
|
| 257 | - * |
|
| 258 | - * @return Mailcode_Commands_Command_ShowDate[] |
|
| 259 | - */ |
|
| 255 | + /** |
|
| 256 | + * Retrieves only show date commands in the collection, if any. |
|
| 257 | + * |
|
| 258 | + * @return Mailcode_Commands_Command_ShowDate[] |
|
| 259 | + */ |
|
| 260 | 260 | public function getShowDateCommands() : array |
| 261 | 261 | { |
| 262 | 262 | return $this->getCommandsByClass(Mailcode_Commands_Command_ShowDate::class); |
@@ -32,44 +32,44 @@ discard block |
||
| 32 | 32 | const VALIDATION_UNKNOWN_COMMAND_NAME = 48304; |
| 33 | 33 | const VALIDATION_INVALID_PARAMS_STATEMENT = 48305; |
| 34 | 34 | |
| 35 | - /** |
|
| 36 | - * @var string |
|
| 37 | - */ |
|
| 35 | + /** |
|
| 36 | + * @var string |
|
| 37 | + */ |
|
| 38 | 38 | protected $type = ''; |
| 39 | 39 | |
| 40 | - /** |
|
| 41 | - * @var string |
|
| 42 | - */ |
|
| 40 | + /** |
|
| 41 | + * @var string |
|
| 42 | + */ |
|
| 43 | 43 | protected $paramsString = ''; |
| 44 | 44 | |
| 45 | - /** |
|
| 46 | - * @var string |
|
| 47 | - */ |
|
| 45 | + /** |
|
| 46 | + * @var string |
|
| 47 | + */ |
|
| 48 | 48 | protected $matchedText = ''; |
| 49 | 49 | |
| 50 | - /** |
|
| 51 | - * @var string |
|
| 52 | - */ |
|
| 50 | + /** |
|
| 51 | + * @var string |
|
| 52 | + */ |
|
| 53 | 53 | protected $hash = ''; |
| 54 | 54 | |
| 55 | - /** |
|
| 56 | - * @var \AppUtils\OperationResult |
|
| 57 | - */ |
|
| 55 | + /** |
|
| 56 | + * @var \AppUtils\OperationResult |
|
| 57 | + */ |
|
| 58 | 58 | protected $validationResult = null; |
| 59 | 59 | |
| 60 | - /** |
|
| 61 | - * @var \Mailcode\Mailcode |
|
| 62 | - */ |
|
| 60 | + /** |
|
| 61 | + * @var \Mailcode\Mailcode |
|
| 62 | + */ |
|
| 63 | 63 | protected $mailcode; |
| 64 | 64 | |
| 65 | - /** |
|
| 66 | - * @var \Mailcode\Mailcode_Parser_Statement |
|
| 67 | - */ |
|
| 65 | + /** |
|
| 66 | + * @var \Mailcode\Mailcode_Parser_Statement |
|
| 67 | + */ |
|
| 68 | 68 | protected $params; |
| 69 | 69 | |
| 70 | - /** |
|
| 71 | - * @var string[] |
|
| 72 | - */ |
|
| 70 | + /** |
|
| 71 | + * @var string[] |
|
| 72 | + */ |
|
| 73 | 73 | protected $validations = array( |
| 74 | 74 | 'params_empty', |
| 75 | 75 | 'params_keywords', |
@@ -78,24 +78,24 @@ discard block |
||
| 78 | 78 | 'type_unsupported' |
| 79 | 79 | ); |
| 80 | 80 | |
| 81 | - /** |
|
| 82 | - * @var string |
|
| 83 | - */ |
|
| 81 | + /** |
|
| 82 | + * @var string |
|
| 83 | + */ |
|
| 84 | 84 | protected $comment = ''; |
| 85 | 85 | |
| 86 | - /** |
|
| 87 | - * @var Mailcode_Commands_LogicKeywords|NULL |
|
| 88 | - */ |
|
| 86 | + /** |
|
| 87 | + * @var Mailcode_Commands_LogicKeywords|NULL |
|
| 88 | + */ |
|
| 89 | 89 | protected $logicKeywords; |
| 90 | 90 | |
| 91 | - /** |
|
| 92 | - * @var Mailcode_Parser_Statement_Validator |
|
| 93 | - */ |
|
| 91 | + /** |
|
| 92 | + * @var Mailcode_Parser_Statement_Validator |
|
| 93 | + */ |
|
| 94 | 94 | protected $validator; |
| 95 | 95 | |
| 96 | - /** |
|
| 97 | - * @var boolean |
|
| 98 | - */ |
|
| 96 | + /** |
|
| 97 | + * @var boolean |
|
| 98 | + */ |
|
| 99 | 99 | private $validated = false; |
| 100 | 100 | |
| 101 | 101 | /** |
@@ -125,13 +125,13 @@ discard block |
||
| 125 | 125 | |
| 126 | 126 | } |
| 127 | 127 | |
| 128 | - /** |
|
| 129 | - * Sets the command's parent opening command, if any. |
|
| 130 | - * NOTE: This is set automatically by the parser, and |
|
| 131 | - * should not be called manually. |
|
| 132 | - * |
|
| 133 | - * @param Mailcode_Commands_Command $command |
|
| 134 | - */ |
|
| 128 | + /** |
|
| 129 | + * Sets the command's parent opening command, if any. |
|
| 130 | + * NOTE: This is set automatically by the parser, and |
|
| 131 | + * should not be called manually. |
|
| 132 | + * |
|
| 133 | + * @param Mailcode_Commands_Command $command |
|
| 134 | + */ |
|
| 135 | 135 | public function setParent(Mailcode_Commands_Command $command) : void |
| 136 | 136 | { |
| 137 | 137 | $this->parent = $command; |
@@ -147,9 +147,9 @@ discard block |
||
| 147 | 147 | return $this->parent; |
| 148 | 148 | } |
| 149 | 149 | |
| 150 | - /** |
|
| 151 | - * @return string The ID of the command = the name of the command class file. |
|
| 152 | - */ |
|
| 150 | + /** |
|
| 151 | + * @return string The ID of the command = the name of the command class file. |
|
| 152 | + */ |
|
| 153 | 153 | public function getID() : string |
| 154 | 154 | { |
| 155 | 155 | // account for commands with types: If_Variable should still return If. |
@@ -158,14 +158,14 @@ discard block |
||
| 158 | 158 | return array_shift($tokens); |
| 159 | 159 | } |
| 160 | 160 | |
| 161 | - /** |
|
| 162 | - * Sets an optional comment that is not used anywhere, but |
|
| 163 | - * can be used by the application to track why a command is |
|
| 164 | - * used somewhere. |
|
| 165 | - * |
|
| 166 | - * @param string $comment |
|
| 167 | - * @return Mailcode_Commands_Command |
|
| 168 | - */ |
|
| 161 | + /** |
|
| 162 | + * Sets an optional comment that is not used anywhere, but |
|
| 163 | + * can be used by the application to track why a command is |
|
| 164 | + * used somewhere. |
|
| 165 | + * |
|
| 166 | + * @param string $comment |
|
| 167 | + * @return Mailcode_Commands_Command |
|
| 168 | + */ |
|
| 169 | 169 | public function setComment(string $comment) : Mailcode_Commands_Command |
| 170 | 170 | { |
| 171 | 171 | $this->comment = $comment; |
@@ -173,34 +173,34 @@ discard block |
||
| 173 | 173 | return $this; |
| 174 | 174 | } |
| 175 | 175 | |
| 176 | - /** |
|
| 177 | - * Retrieves the previously set comment, if any. |
|
| 178 | - * |
|
| 179 | - * @return string |
|
| 180 | - */ |
|
| 176 | + /** |
|
| 177 | + * Retrieves the previously set comment, if any. |
|
| 178 | + * |
|
| 179 | + * @return string |
|
| 180 | + */ |
|
| 181 | 181 | public function getComment() : string |
| 182 | 182 | { |
| 183 | 183 | return $this->comment; |
| 184 | 184 | } |
| 185 | 185 | |
| 186 | - /** |
|
| 187 | - * Checks whether this is a dummy command, which is only |
|
| 188 | - * used to access information on the command type. It cannot |
|
| 189 | - * be used as an actual live command. |
|
| 190 | - * |
|
| 191 | - * @return bool |
|
| 192 | - */ |
|
| 186 | + /** |
|
| 187 | + * Checks whether this is a dummy command, which is only |
|
| 188 | + * used to access information on the command type. It cannot |
|
| 189 | + * be used as an actual live command. |
|
| 190 | + * |
|
| 191 | + * @return bool |
|
| 192 | + */ |
|
| 193 | 193 | public function isDummy() : bool |
| 194 | 194 | { |
| 195 | 195 | return $this->type === '__dummy'; |
| 196 | 196 | } |
| 197 | 197 | |
| 198 | - /** |
|
| 199 | - * Retrieves a hash of the actual matched command string, |
|
| 200 | - * which is used in collections to detect duplicate commands. |
|
| 201 | - * |
|
| 202 | - * @return string |
|
| 203 | - */ |
|
| 198 | + /** |
|
| 199 | + * Retrieves a hash of the actual matched command string, |
|
| 200 | + * which is used in collections to detect duplicate commands. |
|
| 201 | + * |
|
| 202 | + * @return string |
|
| 203 | + */ |
|
| 204 | 204 | public function getHash() : string |
| 205 | 205 | { |
| 206 | 206 | $this->requireNonDummy(); |
@@ -294,9 +294,9 @@ discard block |
||
| 294 | 294 | return $this->validationResult->isValid(); |
| 295 | 295 | } |
| 296 | 296 | |
| 297 | - /** |
|
| 298 | - * @return string[] |
|
| 299 | - */ |
|
| 297 | + /** |
|
| 298 | + * @return string[] |
|
| 299 | + */ |
|
| 300 | 300 | abstract protected function getValidations() : array; |
| 301 | 301 | |
| 302 | 302 | protected function validateSyntax_params_empty() : void |
@@ -455,12 +455,12 @@ discard block |
||
| 455 | 455 | |
| 456 | 456 | abstract public function supportsType() : bool; |
| 457 | 457 | |
| 458 | - /** |
|
| 459 | - * Whether the command allows using logic keywords like "and:" or "or:" |
|
| 460 | - * in the command parameters. |
|
| 461 | - * |
|
| 462 | - * @return bool |
|
| 463 | - */ |
|
| 458 | + /** |
|
| 459 | + * Whether the command allows using logic keywords like "and:" or "or:" |
|
| 460 | + * in the command parameters. |
|
| 461 | + * |
|
| 462 | + * @return bool |
|
| 463 | + */ |
|
| 464 | 464 | abstract public function supportsLogicKeywords() : bool; |
| 465 | 465 | |
| 466 | 466 | abstract public function generatesContent() : bool; |
@@ -506,22 +506,22 @@ discard block |
||
| 506 | 506 | return $normalizer->normalize(); |
| 507 | 507 | } |
| 508 | 508 | |
| 509 | - /** |
|
| 510 | - * Retrieves the names of all the command's supported types: the part |
|
| 511 | - * between the command name and the colon. Example: {command type: params}. |
|
| 512 | - * |
|
| 513 | - * @return string[] |
|
| 514 | - */ |
|
| 509 | + /** |
|
| 510 | + * Retrieves the names of all the command's supported types: the part |
|
| 511 | + * between the command name and the colon. Example: {command type: params}. |
|
| 512 | + * |
|
| 513 | + * @return string[] |
|
| 514 | + */ |
|
| 515 | 515 | public function getSupportedTypes() : array |
| 516 | 516 | { |
| 517 | 517 | return array(); |
| 518 | 518 | } |
| 519 | 519 | |
| 520 | - /** |
|
| 521 | - * Retrieves all variable names used in the command. |
|
| 522 | - * |
|
| 523 | - * @return Mailcode_Variables_Collection_Regular |
|
| 524 | - */ |
|
| 520 | + /** |
|
| 521 | + * Retrieves all variable names used in the command. |
|
| 522 | + * |
|
| 523 | + * @return Mailcode_Variables_Collection_Regular |
|
| 524 | + */ |
|
| 525 | 525 | public function getVariables() : Mailcode_Variables_Collection_Regular |
| 526 | 526 | { |
| 527 | 527 | return Mailcode::create()->findVariables($this->paramsString); |
@@ -546,26 +546,26 @@ discard block |
||
| 546 | 546 | ); |
| 547 | 547 | } |
| 548 | 548 | |
| 549 | - /** |
|
| 550 | - * Sets a parameter for the translation backend. The backend can use |
|
| 551 | - * these to allow command-specific configurations. |
|
| 552 | - * |
|
| 553 | - * @param string $name |
|
| 554 | - * @param mixed $value |
|
| 555 | - * @return $this |
|
| 556 | - */ |
|
| 549 | + /** |
|
| 550 | + * Sets a parameter for the translation backend. The backend can use |
|
| 551 | + * these to allow command-specific configurations. |
|
| 552 | + * |
|
| 553 | + * @param string $name |
|
| 554 | + * @param mixed $value |
|
| 555 | + * @return $this |
|
| 556 | + */ |
|
| 557 | 557 | public function setTranslationParam(string $name, $value) |
| 558 | 558 | { |
| 559 | 559 | $this->translationParams[$name] = $value; |
| 560 | 560 | return $this; |
| 561 | 561 | } |
| 562 | 562 | |
| 563 | - /** |
|
| 564 | - * Retrieves a previously set translation parameter. |
|
| 565 | - * |
|
| 566 | - * @param string $name |
|
| 567 | - * @return mixed |
|
| 568 | - */ |
|
| 563 | + /** |
|
| 564 | + * Retrieves a previously set translation parameter. |
|
| 565 | + * |
|
| 566 | + * @param string $name |
|
| 567 | + * @return mixed |
|
| 568 | + */ |
|
| 569 | 569 | public function getTranslationParam(string $name) |
| 570 | 570 | { |
| 571 | 571 | if(isset($this->translationParams[$name])) |
@@ -28,14 +28,14 @@ discard block |
||
| 28 | 28 | '{\s*([a-z]+)\s+([a-z-]+)\s*:([^}]*)}' |
| 29 | 29 | ); |
| 30 | 30 | |
| 31 | - /** |
|
| 32 | - * @var Mailcode |
|
| 33 | - */ |
|
| 31 | + /** |
|
| 32 | + * @var Mailcode |
|
| 33 | + */ |
|
| 34 | 34 | protected $mailcode; |
| 35 | 35 | |
| 36 | - /** |
|
| 37 | - * @var Mailcode_Commands |
|
| 38 | - */ |
|
| 36 | + /** |
|
| 37 | + * @var Mailcode_Commands |
|
| 38 | + */ |
|
| 39 | 39 | protected $commands; |
| 40 | 40 | |
| 41 | 41 | /** |
@@ -49,24 +49,24 @@ discard block |
||
| 49 | 49 | $this->commands = $this->mailcode->getCommands(); |
| 50 | 50 | } |
| 51 | 51 | |
| 52 | - /** |
|
| 53 | - * Gets the regex format string used to detect commands. |
|
| 54 | - * |
|
| 55 | - * @return string |
|
| 56 | - */ |
|
| 52 | + /** |
|
| 53 | + * Gets the regex format string used to detect commands. |
|
| 54 | + * |
|
| 55 | + * @return string |
|
| 56 | + */ |
|
| 57 | 57 | protected static function getRegex() : string |
| 58 | 58 | { |
| 59 | 59 | return '/'.implode('|', self::COMMAND_REGEX_PARTS).'/sixU'; |
| 60 | 60 | } |
| 61 | 61 | |
| 62 | - /** |
|
| 63 | - * Parses a string to detect all commands within. Returns a |
|
| 64 | - * collection instance that contains information on all the |
|
| 65 | - * commands. |
|
| 66 | - * |
|
| 67 | - * @param string $string |
|
| 68 | - * @return Mailcode_Collection A collection with all unique commands found. |
|
| 69 | - */ |
|
| 62 | + /** |
|
| 63 | + * Parses a string to detect all commands within. Returns a |
|
| 64 | + * collection instance that contains information on all the |
|
| 65 | + * commands. |
|
| 66 | + * |
|
| 67 | + * @param string $string |
|
| 68 | + * @return Mailcode_Collection A collection with all unique commands found. |
|
| 69 | + */ |
|
| 70 | 70 | public function parseString(string $string) : Mailcode_Collection |
| 71 | 71 | { |
| 72 | 72 | $collection = new Mailcode_Collection(); |
@@ -99,14 +99,14 @@ discard block |
||
| 99 | 99 | return preg_replace('%<style\b[^>]*>(.*?)</style>%six', '', $subject); |
| 100 | 100 | } |
| 101 | 101 | |
| 102 | - /** |
|
| 103 | - * Processes a single match found in the string: creates the command, |
|
| 104 | - * and adds it to the collection if it's a valid command, or to the list |
|
| 105 | - * of invalid commands otherwise. |
|
| 106 | - * |
|
| 107 | - * @param Mailcode_Parser_Match $match |
|
| 108 | - * @param Mailcode_Collection $collection |
|
| 109 | - */ |
|
| 102 | + /** |
|
| 103 | + * Processes a single match found in the string: creates the command, |
|
| 104 | + * and adds it to the collection if it's a valid command, or to the list |
|
| 105 | + * of invalid commands otherwise. |
|
| 106 | + * |
|
| 107 | + * @param Mailcode_Parser_Match $match |
|
| 108 | + * @param Mailcode_Collection $collection |
|
| 109 | + */ |
|
| 110 | 110 | protected function processMatch(Mailcode_Parser_Match $match, Mailcode_Collection $collection) : void |
| 111 | 111 | { |
| 112 | 112 | $name = $match->getName(); |
@@ -153,14 +153,14 @@ discard block |
||
| 153 | 153 | } |
| 154 | 154 | } |
| 155 | 155 | |
| 156 | - /** |
|
| 157 | - * Parses a single regex match: determines which named group |
|
| 158 | - * matches, and retrieves the according information. |
|
| 159 | - * |
|
| 160 | - * @param array[] $matches The regex results array. |
|
| 161 | - * @param int $index The matched index. |
|
| 162 | - * @return Mailcode_Parser_Match |
|
| 163 | - */ |
|
| 156 | + /** |
|
| 157 | + * Parses a single regex match: determines which named group |
|
| 158 | + * matches, and retrieves the according information. |
|
| 159 | + * |
|
| 160 | + * @param array[] $matches The regex results array. |
|
| 161 | + * @param int $index The matched index. |
|
| 162 | + * @return Mailcode_Parser_Match |
|
| 163 | + */ |
|
| 164 | 164 | protected function parseMatch(array $matches, int $index) : Mailcode_Parser_Match |
| 165 | 165 | { |
| 166 | 166 | $name = ''; // the command name, e.g. "showvar" |
@@ -198,26 +198,26 @@ discard block |
||
| 198 | 198 | ); |
| 199 | 199 | } |
| 200 | 200 | |
| 201 | - /** |
|
| 202 | - * Creates an instance of the safeguard tool, which |
|
| 203 | - * is used to safeguard commands in a string with placeholders. |
|
| 204 | - * |
|
| 205 | - * @param string $subject The string to use to safeguard commands in. |
|
| 206 | - * @return Mailcode_Parser_Safeguard |
|
| 207 | - * @see Mailcode_Parser_Safeguard |
|
| 208 | - */ |
|
| 201 | + /** |
|
| 202 | + * Creates an instance of the safeguard tool, which |
|
| 203 | + * is used to safeguard commands in a string with placeholders. |
|
| 204 | + * |
|
| 205 | + * @param string $subject The string to use to safeguard commands in. |
|
| 206 | + * @return Mailcode_Parser_Safeguard |
|
| 207 | + * @see Mailcode_Parser_Safeguard |
|
| 208 | + */ |
|
| 209 | 209 | public function createSafeguard(string $subject) : Mailcode_Parser_Safeguard |
| 210 | 210 | { |
| 211 | 211 | return new Mailcode_Parser_Safeguard($this, $subject); |
| 212 | 212 | } |
| 213 | 213 | |
| 214 | - /** |
|
| 215 | - * Creates a statement parser, which is used to validate arbitrary |
|
| 216 | - * command statements. |
|
| 217 | - * |
|
| 218 | - * @param string $statement |
|
| 219 | - * @return Mailcode_Parser_Statement |
|
| 220 | - */ |
|
| 214 | + /** |
|
| 215 | + * Creates a statement parser, which is used to validate arbitrary |
|
| 216 | + * command statements. |
|
| 217 | + * |
|
| 218 | + * @param string $statement |
|
| 219 | + * @return Mailcode_Parser_Statement |
|
| 220 | + */ |
|
| 221 | 221 | public function createStatement(string $statement) : Mailcode_Parser_Statement |
| 222 | 222 | { |
| 223 | 223 | return new Mailcode_Parser_Statement($statement); |