Passed
Push — master ( 827600...d1e019 )
by Sebastian
04:24
created
src/Mailcode/Parser/Safeguard/Formatter/Type/HTMLHighlighting/Location.php 1 patch
Indentation   +36 added lines, -36 removed lines patch added patch discarded remove patch
@@ -24,14 +24,14 @@  discard block
 block discarded – undo
24 24
 {
25 25
     const COMMAND_MARKER = '__MAILCODE_COMMAND__';
26 26
     
27
-   /**
28
-    * @var boolean
29
-    */
27
+    /**
28
+     * @var boolean
29
+     */
30 30
     private $ancestryChecked = false;
31 31
     
32
-   /**
33
-    * @var array<int,array<int,string>>
34
-    */
32
+    /**
33
+     * @var array<int,array<int,string>>
34
+     */
35 35
     private $tagAncestry = array();
36 36
     
37 37
     protected function init() : void
@@ -43,12 +43,12 @@  discard block
 block discarded – undo
43 43
         return !$this->isInTagAttributes() && !$this->isInExcludedTag();
44 44
     }
45 45
     
46
-   /**
47
-    * Retrieves the part of the subject string that comes
48
-    * before the command.
49
-    * 
50
-    * @return string
51
-    */
46
+    /**
47
+     * Retrieves the part of the subject string that comes
48
+     * before the command.
49
+     * 
50
+     * @return string
51
+     */
52 52
     private function getHaystackBefore() : string
53 53
     {
54 54
         $pos = $this->getStartPosition();
@@ -65,12 +65,12 @@  discard block
 block discarded – undo
65 65
         return $this->subject->getSubstr(0, $pos).self::COMMAND_MARKER.'>';
66 66
     }
67 67
     
68
-   /**
69
-    * Whether the command is nested in one of the tags
70
-    * that have been added to the list of excluded tags.
71
-    * 
72
-    * @return bool
73
-    */
68
+    /**
69
+     * Whether the command is nested in one of the tags
70
+     * that have been added to the list of excluded tags.
71
+     * 
72
+     * @return bool
73
+     */
74 74
     protected function isInExcludedTag() : bool
75 75
     {
76 76
         $tagNames = $this->getParentTags();
@@ -86,12 +86,12 @@  discard block
 block discarded – undo
86 86
         return false;
87 87
     }
88 88
     
89
-   /**
90
-    * Retrieves a list of the command's parent HTML tags, from
91
-    * highest to lowest.
92
-    * 
93
-    * @return string[]
94
-    */
89
+    /**
90
+     * Retrieves a list of the command's parent HTML tags, from
91
+     * highest to lowest.
92
+     * 
93
+     * @return string[]
94
+     */
95 95
     private function getParentTags() : array
96 96
     {
97 97
         $tags = $this->getTagAncestry();
@@ -116,12 +116,12 @@  discard block
 block discarded – undo
116 116
         return $stack;
117 117
     }
118 118
     
119
-   /**
120
-    * Checks whether the command is located within the attributes
121
-    * of an HTML tag.
122
-    * 
123
-    * @return bool
124
-    */
119
+    /**
120
+     * Checks whether the command is located within the attributes
121
+     * of an HTML tag.
122
+     * 
123
+     * @return bool
124
+     */
125 125
     protected function isInTagAttributes() : bool
126 126
     {
127 127
         $tags = $this->getTagAncestry();
@@ -139,12 +139,12 @@  discard block
 block discarded – undo
139 139
         return false;
140 140
     }
141 141
     
142
-   /**
143
-    * Retrieves a list of tag names that come as parents 
144
-    * above the command.
145
-    * 
146
-    * @return array<int,array<int,string>>
147
-    */
142
+    /**
143
+     * Retrieves a list of tag names that come as parents 
144
+     * above the command.
145
+     * 
146
+     * @return array<int,array<int,string>>
147
+     */
148 148
     private function getTagAncestry() : array
149 149
     {
150 150
         if($this->ancestryChecked)
Please login to merge, or discard this patch.
src/Mailcode/Parser/Safeguard/Formatting.php 1 patch
Indentation   +67 added lines, -67 removed lines patch added patch discarded remove patch
@@ -32,29 +32,29 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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;
Please login to merge, or discard this patch.
src/Mailcode/Commands/Command/ShowDate.php 1 patch
Indentation   +36 added lines, -36 removed lines patch added patch discarded remove patch
@@ -24,15 +24,15 @@  discard block
 block discarded – undo
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
 block discarded – undo
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;
Please login to merge, or discard this patch.
src/Mailcode/Collection.php 1 patch
Indentation   +56 added lines, -56 removed lines patch added patch discarded remove patch
@@ -24,9 +24,9 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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,21 +234,21 @@  discard block
 block discarded – undo
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);
245 245
     }
246 246
 
247
-   /**
248
-    * Retrieves only show date commands in the collection, if any.
249
-    *
250
-    * @return Mailcode_Commands_Command_ShowDate[]
251
-    */
247
+    /**
248
+     * Retrieves only show date commands in the collection, if any.
249
+     *
250
+     * @return Mailcode_Commands_Command_ShowDate[]
251
+     */
252 252
     public function getShowDateCommands() : array
253 253
     {
254 254
         return $this->getCommandsByClass(Mailcode_Commands_Command_ShowDate::class);
Please login to merge, or discard this patch.
src/Mailcode/Commands/Command.php 1 patch
Indentation   +99 added lines, -99 removed lines patch added patch discarded remove patch
@@ -32,44 +32,44 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
     /**
@@ -120,9 +120,9 @@  discard block
 block discarded – undo
120 120
         
121 121
     }
122 122
     
123
-   /**
124
-    * @return string The ID of the command = the name of the command class file.
125
-    */
123
+    /**
124
+     * @return string The ID of the command = the name of the command class file.
125
+     */
126 126
     public function getID() : string
127 127
     {
128 128
         // account for commands with types: If_Variable should still return If.
@@ -131,14 +131,14 @@  discard block
 block discarded – undo
131 131
         return array_shift($tokens);
132 132
     }
133 133
     
134
-   /**
135
-    * Sets an optional comment that is not used anywhere, but
136
-    * can be used by the application to track why a command is
137
-    * used somewhere. 
138
-    * 
139
-    * @param string $comment
140
-    * @return Mailcode_Commands_Command
141
-    */
134
+    /**
135
+     * Sets an optional comment that is not used anywhere, but
136
+     * can be used by the application to track why a command is
137
+     * used somewhere. 
138
+     * 
139
+     * @param string $comment
140
+     * @return Mailcode_Commands_Command
141
+     */
142 142
     public function setComment(string $comment) : Mailcode_Commands_Command
143 143
     {
144 144
         $this->comment = $comment;
@@ -146,34 +146,34 @@  discard block
 block discarded – undo
146 146
         return $this;
147 147
     }
148 148
     
149
-   /**
150
-    * Retrieves the previously set comment, if any.
151
-    * 
152
-    * @return string
153
-    */
149
+    /**
150
+     * Retrieves the previously set comment, if any.
151
+     * 
152
+     * @return string
153
+     */
154 154
     public function getComment() : string
155 155
     {
156 156
         return $this->comment;
157 157
     }
158 158
     
159
-   /**
160
-    * Checks whether this is a dummy command, which is only
161
-    * used to access information on the command type. It cannot
162
-    * be used as an actual live command.
163
-    * 
164
-    * @return bool
165
-    */
159
+    /**
160
+     * Checks whether this is a dummy command, which is only
161
+     * used to access information on the command type. It cannot
162
+     * be used as an actual live command.
163
+     * 
164
+     * @return bool
165
+     */
166 166
     public function isDummy() : bool
167 167
     {
168 168
         return $this->type === '__dummy';
169 169
     }
170 170
     
171
-   /**
172
-    * Retrieves a hash of the actual matched command string,
173
-    * which is used in collections to detect duplicate commands.
174
-    * 
175
-    * @return string
176
-    */
171
+    /**
172
+     * Retrieves a hash of the actual matched command string,
173
+     * which is used in collections to detect duplicate commands.
174
+     * 
175
+     * @return string
176
+     */
177 177
     public function getHash() : string
178 178
     {
179 179
         $this->requireNonDummy();
@@ -267,9 +267,9 @@  discard block
 block discarded – undo
267 267
         return $this->validationResult->isValid();
268 268
     }
269 269
     
270
-   /**
271
-    * @return string[]
272
-    */
270
+    /**
271
+     * @return string[]
272
+     */
273 273
     abstract protected function getValidations() : array;
274 274
     
275 275
     protected function validateSyntax_params_empty() : void
@@ -428,12 +428,12 @@  discard block
 block discarded – undo
428 428
     
429 429
     abstract public function supportsType() : bool;
430 430
     
431
-   /**
432
-    * Whether the command allows using logic keywords like "and:" or "or:"
433
-    * in the command parameters.
434
-    * 
435
-    * @return bool
436
-    */
431
+    /**
432
+     * Whether the command allows using logic keywords like "and:" or "or:"
433
+     * in the command parameters.
434
+     * 
435
+     * @return bool
436
+     */
437 437
     abstract public function supportsLogicKeywords() : bool;
438 438
     
439 439
     abstract public function generatesContent() : bool;
@@ -479,22 +479,22 @@  discard block
 block discarded – undo
479 479
         return $normalizer->normalize();
480 480
     }
481 481
     
482
-   /**
483
-    * Retrieves the names of all the command's supported types: the part
484
-    * between the command name and the colon. Example: {command type: params}.
485
-    * 
486
-    * @return string[]
487
-    */
482
+    /**
483
+     * Retrieves the names of all the command's supported types: the part
484
+     * between the command name and the colon. Example: {command type: params}.
485
+     * 
486
+     * @return string[]
487
+     */
488 488
     public function getSupportedTypes() : array
489 489
     {
490 490
         return array();
491 491
     }
492 492
     
493
-   /**
494
-    * Retrieves all variable names used in the command.
495
-    * 
496
-    * @return Mailcode_Variables_Collection_Regular
497
-    */
493
+    /**
494
+     * Retrieves all variable names used in the command.
495
+     * 
496
+     * @return Mailcode_Variables_Collection_Regular
497
+     */
498 498
     public function getVariables() : Mailcode_Variables_Collection_Regular
499 499
     {
500 500
         return Mailcode::create()->findVariables($this->paramsString);
@@ -519,26 +519,26 @@  discard block
 block discarded – undo
519 519
         );
520 520
     }
521 521
 
522
-   /**
523
-    * Sets a parameter for the translation backend. The backend can use
524
-    * these to allow command-specific configurations.
525
-    *
526
-    * @param string $name
527
-    * @param mixed $value
528
-    * @return $this
529
-    */
522
+    /**
523
+     * Sets a parameter for the translation backend. The backend can use
524
+     * these to allow command-specific configurations.
525
+     *
526
+     * @param string $name
527
+     * @param mixed $value
528
+     * @return $this
529
+     */
530 530
     public function setTranslationParam(string $name, $value)
531 531
     {
532 532
         $this->translationParams[$name] = $value;
533 533
         return $this;
534 534
     }
535 535
 
536
-   /**
537
-    * Retrieves a previously set translation parameter.
538
-    *
539
-    * @param string $name
540
-    * @return mixed
541
-    */
536
+    /**
537
+     * Retrieves a previously set translation parameter.
538
+     *
539
+     * @param string $name
540
+     * @return mixed
541
+     */
542 542
     public function getTranslationParam(string $name)
543 543
     {
544 544
         if(isset($this->translationParams[$name]))
Please login to merge, or discard this patch.
src/Mailcode/Translator/Syntax/ApacheVelocity/ShowDate.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -24,15 +24,15 @@
 block discarded – undo
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',
Please login to merge, or discard this patch.