@@ -165,13 +165,13 @@ |
||
| 165 | 165 | ); |
| 166 | 166 | } |
| 167 | 167 | |
| 168 | - /** |
|
| 169 | - * |
|
| 170 | - * @param Mailcode_Variables_Variable $variable |
|
| 171 | - * @param bool $caseSensitive |
|
| 172 | - * @param Mailcode_Parser_Statement_Tokenizer_Token_StringLiteral[] $searchTerms |
|
| 173 | - * @return string |
|
| 174 | - */ |
|
| 168 | + /** |
|
| 169 | + * |
|
| 170 | + * @param Mailcode_Variables_Variable $variable |
|
| 171 | + * @param bool $caseSensitive |
|
| 172 | + * @param Mailcode_Parser_Statement_Tokenizer_Token_StringLiteral[] $searchTerms |
|
| 173 | + * @return string |
|
| 174 | + */ |
|
| 175 | 175 | protected function _translateContains(Mailcode_Variables_Variable $variable, bool $caseSensitive, array $searchTerms, string $containsType) : string |
| 176 | 176 | { |
| 177 | 177 | $parts = array(); |
@@ -23,9 +23,9 @@ discard block |
||
| 23 | 23 | const ERROR_INVALID_COMMAND_CREATED = 50001; |
| 24 | 24 | const ERROR_UNEXPECTED_COMMAND_TYPE = 50002; |
| 25 | 25 | |
| 26 | - /** |
|
| 27 | - * @var Mailcode_Factory_CommandSets |
|
| 28 | - */ |
|
| 26 | + /** |
|
| 27 | + * @var Mailcode_Factory_CommandSets |
|
| 28 | + */ |
|
| 29 | 29 | private static $commandSets; |
| 30 | 30 | |
| 31 | 31 | /** |
@@ -79,33 +79,33 @@ discard block |
||
| 79 | 79 | } |
| 80 | 80 | |
| 81 | 81 | /** |
| 82 | - * Creates a renderer instance, which can be used to easily |
|
| 83 | - * create and convert commands to strings. |
|
| 84 | - * |
|
| 85 | - * @return Mailcode_Renderer |
|
| 86 | - */ |
|
| 82 | + * Creates a renderer instance, which can be used to easily |
|
| 83 | + * create and convert commands to strings. |
|
| 84 | + * |
|
| 85 | + * @return Mailcode_Renderer |
|
| 86 | + */ |
|
| 87 | 87 | public static function createRenderer() : Mailcode_Renderer |
| 88 | 88 | { |
| 89 | 89 | return new Mailcode_Renderer(); |
| 90 | 90 | } |
| 91 | 91 | |
| 92 | - /** |
|
| 93 | - * Creates a printer instance, which works like the renderer, |
|
| 94 | - * but outputs the generated strings to standard output. |
|
| 95 | - * |
|
| 96 | - * @return Mailcode_Printer |
|
| 97 | - */ |
|
| 92 | + /** |
|
| 93 | + * Creates a printer instance, which works like the renderer, |
|
| 94 | + * but outputs the generated strings to standard output. |
|
| 95 | + * |
|
| 96 | + * @return Mailcode_Printer |
|
| 97 | + */ |
|
| 98 | 98 | public static function createPrinter() : Mailcode_Printer |
| 99 | 99 | { |
| 100 | 100 | return new Mailcode_Printer(); |
| 101 | 101 | } |
| 102 | 102 | |
| 103 | - /** |
|
| 104 | - * Gets/creates the global instance of the date format info |
|
| 105 | - * class, used to handle date formatting aspects. |
|
| 106 | - * |
|
| 107 | - * @return Mailcode_Date_FormatInfo |
|
| 108 | - */ |
|
| 103 | + /** |
|
| 104 | + * Gets/creates the global instance of the date format info |
|
| 105 | + * class, used to handle date formatting aspects. |
|
| 106 | + * |
|
| 107 | + * @return Mailcode_Date_FormatInfo |
|
| 108 | + */ |
|
| 109 | 109 | public static function createDateInfo() : Mailcode_Date_FormatInfo |
| 110 | 110 | { |
| 111 | 111 | return Mailcode_Date_FormatInfo::getInstance(); |
@@ -21,17 +21,17 @@ discard block |
||
| 21 | 21 | */ |
| 22 | 22 | class Mailcode_Renderer |
| 23 | 23 | { |
| 24 | - /** |
|
| 25 | - * @var boolean |
|
| 26 | - */ |
|
| 24 | + /** |
|
| 25 | + * @var boolean |
|
| 26 | + */ |
|
| 27 | 27 | protected $highlighted = false; |
| 28 | 28 | |
| 29 | - /** |
|
| 30 | - * Sets whether to output highlighted commands instead of the default plain text. |
|
| 31 | - * |
|
| 32 | - * @param bool $highlighted |
|
| 33 | - * @return Mailcode_Renderer |
|
| 34 | - */ |
|
| 29 | + /** |
|
| 30 | + * Sets whether to output highlighted commands instead of the default plain text. |
|
| 31 | + * |
|
| 32 | + * @param bool $highlighted |
|
| 33 | + * @return Mailcode_Renderer |
|
| 34 | + */ |
|
| 35 | 35 | public function setOutputHighlighted(bool $highlighted=true) : Mailcode_Renderer |
| 36 | 36 | { |
| 37 | 37 | $this->highlighted = $highlighted; |
@@ -39,12 +39,12 @@ discard block |
||
| 39 | 39 | return $this; |
| 40 | 40 | } |
| 41 | 41 | |
| 42 | - /** |
|
| 43 | - * Converts a show variable command to string. |
|
| 44 | - * |
|
| 45 | - * @param string $variableName The variable name, with or without $ sign. |
|
| 46 | - * @return string |
|
| 47 | - */ |
|
| 42 | + /** |
|
| 43 | + * Converts a show variable command to string. |
|
| 44 | + * |
|
| 45 | + * @param string $variableName The variable name, with or without $ sign. |
|
| 46 | + * @return string |
|
| 47 | + */ |
|
| 48 | 48 | public function showVar(string $variableName) : string |
| 49 | 49 | { |
| 50 | 50 | return $this->command2string(Mailcode_Factory::show()->var($variableName)); |