Passed
Push — master ( 8d3817...f745df )
by Sebastian
03:43 queued 01:06
created
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,11 +234,11 @@  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);
@@ -252,11 +252,11 @@  discard block
 block discarded – undo
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);
Please login to merge, or discard this patch.
src/Mailcode/Commands/Command.php 1 patch
Indentation   +106 added lines, -106 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
     /**
@@ -125,13 +125,13 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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]))
Please login to merge, or discard this patch.
src/Mailcode/Parser.php 1 patch
Indentation   +50 added lines, -50 removed lines patch added patch discarded remove patch
@@ -28,14 +28,14 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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);
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' => 'dd',
38 38
         'j' => 'd',
Please login to merge, or discard this patch.