Passed
Push — master ( 1b5df6...213867 )
by Sebastian
13:22
created
src/Mailcode/Parser/Statement/Info.php 1 patch
Indentation   +25 added lines, -25 removed lines patch added patch discarded remove patch
@@ -21,14 +21,14 @@  discard block
 block discarded – undo
21 21
  */
22 22
 class Mailcode_Parser_Statement_Info
23 23
 {
24
-   /**
25
-    * @var Mailcode_Parser_Statement_Tokenizer
26
-    */
24
+    /**
25
+     * @var Mailcode_Parser_Statement_Tokenizer
26
+     */
27 27
     protected $tokenizer;
28 28
     
29
-   /**
30
-    * @var Mailcode_Parser_Statement_Tokenizer_Token[]
31
-    */
29
+    /**
30
+     * @var Mailcode_Parser_Statement_Tokenizer_Token[]
31
+     */
32 32
     protected $tokens = array();
33 33
     
34 34
     public function __construct(Mailcode_Parser_Statement_Tokenizer $tokenizer)
@@ -37,11 +37,11 @@  discard block
 block discarded – undo
37 37
         $this->tokens = $this->tokenizer->getTokens(); 
38 38
     }
39 39
     
40
-   /**
41
-    * Whether the whole statement is a variable being assigned a value.
42
-    * 
43
-    * @return bool
44
-    */
40
+    /**
41
+     * Whether the whole statement is a variable being assigned a value.
42
+     * 
43
+     * @return bool
44
+     */
45 45
     public function isVariableAssignment() : bool
46 46
     {
47 47
         $variable = $this->getVariableByIndex(0);
@@ -56,11 +56,11 @@  discard block
 block discarded – undo
56 56
         return false;
57 57
     }
58 58
     
59
-   /**
60
-    * Whether the whole statement is a variable being compared to something.
61
-    * 
62
-    * @return bool
63
-    */
59
+    /**
60
+     * Whether the whole statement is a variable being compared to something.
61
+     * 
62
+     * @return bool
63
+     */
64 64
     public function isVariableComparison() : bool
65 65
     {
66 66
         $variable = $this->getVariableByIndex(0);
@@ -75,11 +75,11 @@  discard block
 block discarded – undo
75 75
         return false;
76 76
     }
77 77
     
78
-   /**
79
-    * Retrieves all variables used in the statement.
80
-    * 
81
-    * @return \Mailcode\Mailcode_Variables_Variable[]
82
-    */
78
+    /**
79
+     * Retrieves all variables used in the statement.
80
+     * 
81
+     * @return \Mailcode\Mailcode_Variables_Variable[]
82
+     */
83 83
     public function getVariables()
84 84
     {
85 85
         $result = array();
@@ -158,10 +158,10 @@  discard block
 block discarded – undo
158 158
         return isset($this->tokens[$index]);
159 159
     }
160 160
     
161
-   /**
162
-    * Retrieves all string literals that were found in the command.
163
-    * @return \Mailcode\Mailcode_Parser_Statement_Tokenizer_Token_StringLiteral[]
164
-    */
161
+    /**
162
+     * Retrieves all string literals that were found in the command.
163
+     * @return \Mailcode\Mailcode_Parser_Statement_Tokenizer_Token_StringLiteral[]
164
+     */
165 165
     public function getStringLiterals()
166 166
     {
167 167
         $result = array();
Please login to merge, or discard this patch.
src/Mailcode/Parser/Statement/Tokenizer.php 1 patch
Indentation   +51 added lines, -51 removed lines patch added patch discarded remove patch
@@ -23,9 +23,9 @@  discard block
 block discarded – undo
23 23
 {
24 24
     const ERROR_TOKENIZE_METHOD_MISSING = 49801;
25 25
     
26
-   /**
27
-    * @var string[]
28
-    */
26
+    /**
27
+     * @var string[]
28
+     */
29 29
     protected $operands = array(
30 30
         '==',
31 31
         '<=',
@@ -40,17 +40,17 @@  discard block
 block discarded – undo
40 40
         '<'
41 41
     );
42 42
     
43
-   /**
44
-    * @var string[]
45
-    */
43
+    /**
44
+     * @var string[]
45
+     */
46 46
     protected $keywords = array(
47 47
         'in:',
48 48
         'insensitive:'
49 49
     );
50 50
     
51
-   /**
52
-    * @var string
53
-    */
51
+    /**
52
+     * @var string
53
+     */
54 54
     protected $delimiter = '§§';
55 55
     
56 56
     /**
@@ -66,19 +66,19 @@  discard block
 block discarded – undo
66 66
         'extract_tokens'
67 67
     );
68 68
     
69
-   /**
70
-    * @var Mailcode_Parser_Statement
71
-    */
69
+    /**
70
+     * @var Mailcode_Parser_Statement
71
+     */
72 72
     protected $statement;
73 73
     
74
-   /**
75
-    * @var string
76
-    */
74
+    /**
75
+     * @var string
76
+     */
77 77
     protected $tokenized;
78 78
     
79
-   /**
80
-    * @var Mailcode_Parser_Statement_Tokenizer_Token[]
81
-    */
79
+    /**
80
+     * @var Mailcode_Parser_Statement_Tokenizer_Token[]
81
+     */
82 82
     protected $tokensTemporary = array();
83 83
     
84 84
     /**
@@ -86,9 +86,9 @@  discard block
 block discarded – undo
86 86
      */
87 87
     protected $tokensOrdered = array();
88 88
     
89
-   /**
90
-    * @var string[]
91
-    */
89
+    /**
90
+     * @var string[]
91
+     */
92 92
     protected static $ids = array();
93 93
     
94 94
     public function __construct(Mailcode_Parser_Statement $statement)
@@ -98,12 +98,12 @@  discard block
 block discarded – undo
98 98
         $this->tokenize($statement->getStatementString());
99 99
     }
100 100
 
101
-   /**
102
-    * Retrieves all tokens detected in the statement string, in 
103
-    * the order they were found.
104
-    * 
105
-    * @return Mailcode_Parser_Statement_Tokenizer_Token[]
106
-    */
101
+    /**
102
+     * Retrieves all tokens detected in the statement string, in 
103
+     * the order they were found.
104
+     * 
105
+     * @return Mailcode_Parser_Statement_Tokenizer_Token[]
106
+     */
107 107
     public function getTokens()
108 108
     {
109 109
         return $this->tokensOrdered;
@@ -114,11 +114,11 @@  discard block
 block discarded – undo
114 114
         return !empty($this->tokensOrdered);
115 115
     }
116 116
     
117
-   /**
118
-    * Whether there were any unknown tokens in the statement.
119
-    * 
120
-    * @return bool
121
-    */
117
+    /**
118
+     * Whether there were any unknown tokens in the statement.
119
+     * 
120
+     * @return bool
121
+     */
122 122
     public function hasUnknown() : bool
123 123
     {
124 124
         $unknown = $this->getUnknown();
@@ -126,11 +126,11 @@  discard block
 block discarded – undo
126 126
         return !empty($unknown);
127 127
     }
128 128
     
129
-   /**
130
-    * Retrieves all unknown content tokens, if any.
131
-    * 
132
-    * @return \Mailcode\Mailcode_Parser_Statement_Tokenizer_Token_Unknown[]
133
-    */
129
+    /**
130
+     * Retrieves all unknown content tokens, if any.
131
+     * 
132
+     * @return \Mailcode\Mailcode_Parser_Statement_Tokenizer_Token_Unknown[]
133
+     */
134 134
     public function getUnknown()
135 135
     {
136 136
         $result = array();
@@ -200,13 +200,13 @@  discard block
 block discarded – undo
200 200
         }
201 201
     }
202 202
    
203
-   /**
204
-    * Registers a token to add in the statement string.
205
-    * 
206
-    * @param string $type
207
-    * @param string $matchedText
208
-    * @param mixed $subject
209
-    */
203
+    /**
204
+     * Registers a token to add in the statement string.
205
+     * 
206
+     * @param string $type
207
+     * @param string $matchedText
208
+     * @param mixed $subject
209
+     */
210 210
     protected function registerToken(string $type, string $matchedText, $subject=null) : void
211 211
     {
212 212
         $tokenID = $this->generateID();
@@ -318,13 +318,13 @@  discard block
 block discarded – undo
318 318
         }
319 319
     }
320 320
     
321
-   /**
322
-    * Generates a unique alphabet-based ID without numbers
323
-    * to use as token name, to avoid conflicts with the
324
-    * numbers detection.
325
-    * 
326
-    * @return string
327
-    */
321
+    /**
322
+     * Generates a unique alphabet-based ID without numbers
323
+     * to use as token name, to avoid conflicts with the
324
+     * numbers detection.
325
+     * 
326
+     * @return string
327
+     */
328 328
     protected function generateID() : string
329 329
     {
330 330
         static $alphas;
Please login to merge, or discard this patch.
src/Mailcode/Traits/Commands/IfVariable.php 1 patch
Indentation   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -23,19 +23,19 @@  discard block
 block discarded – undo
23 23
  */
24 24
 trait Mailcode_Traits_Commands_IfVariable
25 25
 {
26
-   /**
27
-    * @var Mailcode_Parser_Statement_Tokenizer_Token_Variable|NULL
28
-    */
26
+    /**
27
+     * @var Mailcode_Parser_Statement_Tokenizer_Token_Variable|NULL
28
+     */
29 29
     protected $variable;
30 30
     
31
-   /**
32
-    * @var Mailcode_Parser_Statement_Tokenizer_Token_Operand|NULL
33
-    */
31
+    /**
32
+     * @var Mailcode_Parser_Statement_Tokenizer_Token_Operand|NULL
33
+     */
34 34
     protected $comparator;
35 35
     
36
-   /**
37
-    * @var Mailcode_Parser_Statement_Tokenizer_Type_Value|NULL
38
-    */
36
+    /**
37
+     * @var Mailcode_Parser_Statement_Tokenizer_Type_Value|NULL
38
+     */
39 39
     protected $value;
40 40
     
41 41
     protected function getValidations() : array
@@ -123,11 +123,11 @@  discard block
 block discarded – undo
123 123
         );
124 124
     }
125 125
     
126
-   /**
127
-    * Retrieves the variable being compared.
128
-    *
129
-    * @return Mailcode_Variables_Variable
130
-    */
126
+    /**
127
+     * Retrieves the variable being compared.
128
+     *
129
+     * @return Mailcode_Variables_Variable
130
+     */
131 131
     public function getVariable() : Mailcode_Variables_Variable
132 132
     {
133 133
         if(isset($this->variable))
@@ -156,10 +156,10 @@  discard block
 block discarded – undo
156 156
         return $this->comparator->getOperand();
157 157
     }
158 158
     
159
-   /**
160
-    * Retrieves the unquoted value 
161
-    * @return string
162
-    */
159
+    /**
160
+     * Retrieves the unquoted value 
161
+     * @return string
162
+     */
163 163
     public function getValue() : string
164 164
     {
165 165
         return $this->value->getValue();
Please login to merge, or discard this patch.
src/Mailcode/Traits/Commands/IfContains.php 1 patch
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -28,14 +28,14 @@  discard block
 block discarded – undo
28 28
      */
29 29
     protected $variable;
30 30
 
31
-   /**
32
-    * @var Mailcode_Parser_Statement_Tokenizer_Token_StringLiteral|NULL
33
-    */
31
+    /**
32
+     * @var Mailcode_Parser_Statement_Tokenizer_Token_StringLiteral|NULL
33
+     */
34 34
     protected $literal;
35 35
     
36
-   /**
37
-    * @var boolean
38
-    */
36
+    /**
37
+     * @var boolean
38
+     */
39 39
     protected $caseInsensitive = false;
40 40
     
41 41
     protected function getValidations() : array
@@ -131,11 +131,11 @@  discard block
 block discarded – undo
131 131
         );
132 132
     }
133 133
 
134
-   /**
135
-    * Retrieves the variable being compared.
136
-    *
137
-    * @return Mailcode_Variables_Variable
138
-    */
134
+    /**
135
+     * Retrieves the variable being compared.
136
+     *
137
+     * @return Mailcode_Variables_Variable
138
+     */
139 139
     public function getVariable() : Mailcode_Variables_Variable
140 140
     {
141 141
         if(isset($this->variable))
Please login to merge, or discard this patch.
src/Mailcode/Commands.php 1 patch
Indentation   +46 added lines, -46 removed lines patch added patch discarded remove patch
@@ -25,21 +25,21 @@  discard block
 block discarded – undo
25 25
     
26 26
     const ERROR_COMMAND_DOES_NOT_EXIST = 45901;
27 27
     
28
-   /**
29
-    * @var Mailcode_Commands_Command[]
30
-    */
28
+    /**
29
+     * @var Mailcode_Commands_Command[]
30
+     */
31 31
     private $commands = array();
32 32
     
33
-   /**
34
-    * @var string[]Mailcode_Commands_Command
35
-    */
33
+    /**
34
+     * @var string[]Mailcode_Commands_Command
35
+     */
36 36
     private static $dummyCommands = array();
37 37
     
38
-   /**
39
-    * Retrieves a list of all available command IDs.
40
-    * 
41
-    * @return string[]
42
-    */
38
+    /**
39
+     * Retrieves a list of all available command IDs.
40
+     * 
41
+     * @return string[]
42
+     */
43 43
     public function getIDs() : array
44 44
     {
45 45
         static $ids = array();
@@ -52,13 +52,13 @@  discard block
 block discarded – undo
52 52
         return $ids;
53 53
     }
54 54
     
55
-   /**
56
-    * Retrieves a list of all available commands, sorted by label.
57
-    * 
58
-    * NOTE: These instances are only used for information purposes.
59
-    * 
60
-    * @return Mailcode_Commands_Command[]
61
-    */
55
+    /**
56
+     * Retrieves a list of all available commands, sorted by label.
57
+     * 
58
+     * NOTE: These instances are only used for information purposes.
59
+     * 
60
+     * @return Mailcode_Commands_Command[]
61
+     */
62 62
     public function getAll()
63 63
     {
64 64
         if(!empty($this->commands)) {
@@ -84,12 +84,12 @@  discard block
 block discarded – undo
84 84
         return $result;
85 85
     }
86 86
     
87
-   /**
88
-    * Gets an available command by its ID.
89
-    * 
90
-    * @param string $id
91
-    * @return Mailcode_Commands_Command
92
-    */
87
+    /**
88
+     * Gets an available command by its ID.
89
+     * 
90
+     * @param string $id
91
+     * @return Mailcode_Commands_Command
92
+     */
93 93
     public function getByID(string $id) : Mailcode_Commands_Command
94 94
     {
95 95
         static $instances = array();
@@ -102,15 +102,15 @@  discard block
 block discarded – undo
102 102
         return $instances[$id];
103 103
     }
104 104
     
105
-   /**
106
-    * Retrieves the ID of a command by its name.
107
-    * 
108
-    * @param string $name
109
-    * @throws Mailcode_Exception
110
-    * @return string
111
-    * 
112
-    * @see Mailcode_Commands::ERROR_COMMAND_NAME_DOES_NOT_EXIST
113
-    */
105
+    /**
106
+     * Retrieves the ID of a command by its name.
107
+     * 
108
+     * @param string $name
109
+     * @throws Mailcode_Exception
110
+     * @return string
111
+     * 
112
+     * @see Mailcode_Commands::ERROR_COMMAND_NAME_DOES_NOT_EXIST
113
+     */
114 114
     public function getIDByName(string $name) : string
115 115
     {
116 116
         $items = $this->getAll();
@@ -139,12 +139,12 @@  discard block
 block discarded – undo
139 139
         return in_array($id, $ids);
140 140
     }
141 141
     
142
-   /**
143
-    * Checks wether the specified name exists.
144
-    * 
145
-    * @param string $name For example: "showvar".
146
-    * @return bool
147
-    */
142
+    /**
143
+     * Checks wether the specified name exists.
144
+     * 
145
+     * @param string $name For example: "showvar".
146
+     * @return bool
147
+     */
148 148
     public function nameExists(string $name) : bool
149 149
     {
150 150
         $items = $this->getAll();
@@ -198,13 +198,13 @@  discard block
 block discarded – undo
198 198
         return $class;
199 199
     }
200 200
     
201
-   /**
202
-    * Retrieves the dummy command of the specified type, which
203
-    * is used to retrieve information on the command's capabilities.
204
-    *  
205
-    * @param string $id
206
-    * @return Mailcode_Commands_Command
207
-    */
201
+    /**
202
+     * Retrieves the dummy command of the specified type, which
203
+     * is used to retrieve information on the command's capabilities.
204
+     *  
205
+     * @param string $id
206
+     * @return Mailcode_Commands_Command
207
+     */
208 208
     private function getDummyCommand(string $id) : Mailcode_Commands_Command
209 209
     {
210 210
         if(!isset(self::$dummyCommands[$id]))
Please login to merge, or discard this patch.
src/Mailcode/Factory.php 1 patch
Indentation   +52 added lines, -52 removed lines patch added patch discarded remove patch
@@ -24,17 +24,17 @@  discard block
 block discarded – undo
24 24
     
25 25
     const ERROR_UNEXPECTED_COMMAND_TYPE = 50002;
26 26
     
27
-   /**
28
-    * @var Mailcode_Renderer
29
-    */
27
+    /**
28
+     * @var Mailcode_Renderer
29
+     */
30 30
     protected static $renderer;
31 31
     
32
-   /**
33
-    * Creates a ShowVariable command.
34
-    * 
35
-    * @param string $variableName A variable name, with or without the $ sign prepended.
36
-    * @return Mailcode_Commands_Command_ShowVariable
37
-    */
32
+    /**
33
+     * Creates a ShowVariable command.
34
+     * 
35
+     * @param string $variableName A variable name, with or without the $ sign prepended.
36
+     * @return Mailcode_Commands_Command_ShowVariable
37
+     */
38 38
     public static function showVar(string $variableName) : Mailcode_Commands_Command_ShowVariable
39 39
     {
40 40
         $variableName = self::_filterVariableName($variableName);
@@ -56,12 +56,12 @@  discard block
 block discarded – undo
56 56
         throw self::_exceptionUnexpectedType('ShowVariable', $cmd);
57 57
     }
58 58
 
59
-   /**
60
-    * Creates a ShowSnippet command.
61
-    *
62
-    * @param string $snippetName A snippet name, with or without the $ sign prepended.
63
-    * @return Mailcode_Commands_Command_ShowSnippet
64
-    */
59
+    /**
60
+     * Creates a ShowSnippet command.
61
+     *
62
+     * @param string $snippetName A snippet name, with or without the $ sign prepended.
63
+     * @return Mailcode_Commands_Command_ShowSnippet
64
+     */
65 65
     public static function showSnippet(string $snippetName) : Mailcode_Commands_Command_ShowSnippet
66 66
     {
67 67
         $snippetName = self::_filterVariableName($snippetName);
@@ -83,17 +83,17 @@  discard block
 block discarded – undo
83 83
         throw self::_exceptionUnexpectedType('ShowSnippet', $cmd);
84 84
     }
85 85
     
86
-   /**
87
-    * Creates a SetVariable command.
88
-    * 
89
-    * @param string $variableName A variable name, with or without the $ sign prepended.
90
-    * @param string $value
91
-    * @param bool $quoteValue Whether to treat the value as a string literal, and add quotes to it.
92
-    * @return Mailcode_Commands_Command_SetVariable
93
-    * @throws Mailcode_Factory_Exception
94
-    * 
95
-    * @see Mailcode_Factory::ERROR_INVALID_COMMAND_CREATED
96
-    */
86
+    /**
87
+     * Creates a SetVariable command.
88
+     * 
89
+     * @param string $variableName A variable name, with or without the $ sign prepended.
90
+     * @param string $value
91
+     * @param bool $quoteValue Whether to treat the value as a string literal, and add quotes to it.
92
+     * @return Mailcode_Commands_Command_SetVariable
93
+     * @throws Mailcode_Factory_Exception
94
+     * 
95
+     * @see Mailcode_Factory::ERROR_INVALID_COMMAND_CREATED
96
+     */
97 97
     public static function setVar(string $variableName, string $value, bool $quoteValue=true) : Mailcode_Commands_Command_SetVariable
98 98
     {
99 99
         $variableName = self::_filterVariableName($variableName);
@@ -122,14 +122,14 @@  discard block
 block discarded – undo
122 122
         throw self::_exceptionUnexpectedType('SetVariable', $cmd);
123 123
     }
124 124
     
125
-   /**
126
-    * Like setVar(), but treats the value as a string literal
127
-    * and automatically adds quotes to it.
128
-    * 
129
-    * @param string $variableName
130
-    * @param string $value
131
-    * @return Mailcode_Commands_Command_SetVariable
132
-    */
125
+    /**
126
+     * Like setVar(), but treats the value as a string literal
127
+     * and automatically adds quotes to it.
128
+     * 
129
+     * @param string $variableName
130
+     * @param string $value
131
+     * @return Mailcode_Commands_Command_SetVariable
132
+     */
133 133
     public static function setVarString(string $variableName, string $value) : Mailcode_Commands_Command_SetVariable
134 134
     {
135 135
         return self::setVar($variableName, $value, true);
@@ -461,12 +461,12 @@  discard block
 block discarded – undo
461 461
         return '$'.ltrim($name, '$');
462 462
     }
463 463
     
464
-   /**
465
-    * Quotes a string literal: adds the quotes, and escapes any quotes already present in it.
466
-    * 
467
-    * @param string $string
468
-    * @return string
469
-    */
464
+    /**
465
+     * Quotes a string literal: adds the quotes, and escapes any quotes already present in it.
466
+     * 
467
+     * @param string $string
468
+     * @return string
469
+     */
470 470
     protected static function _quoteString(string $string) : string
471 471
     {
472 472
         return '"'.str_replace('"', '\"', $string).'"';
@@ -499,23 +499,23 @@  discard block
 block discarded – undo
499 499
         );
500 500
     }
501 501
     
502
-   /**
503
-    * Creates a renderer instance, which can be used to easily
504
-    * create and convert commands to strings.
505
-    * 
506
-    * @return Mailcode_Renderer
507
-    */
502
+    /**
503
+     * Creates a renderer instance, which can be used to easily
504
+     * create and convert commands to strings.
505
+     * 
506
+     * @return Mailcode_Renderer
507
+     */
508 508
     public static function createRenderer() : Mailcode_Renderer
509 509
     {
510 510
         return new Mailcode_Renderer();
511 511
     }
512 512
     
513
-   /**
514
-    * Creates a printer instance, which works like the renderer,
515
-    * but outputs the generated strings to standard output.
516
-    * 
517
-    * @return Mailcode_Printer
518
-    */
513
+    /**
514
+     * Creates a printer instance, which works like the renderer,
515
+     * but outputs the generated strings to standard output.
516
+     * 
517
+     * @return Mailcode_Printer
518
+     */
519 519
     public static function createPrinter() : Mailcode_Printer
520 520
     {
521 521
         return new Mailcode_Printer();
Please login to merge, or discard this patch.
src/Mailcode/Translator/Syntax/ApacheVelocity.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -20,13 +20,13 @@
 block discarded – undo
20 20
  */
21 21
 abstract class Mailcode_Translator_Syntax_ApacheVelocity extends Mailcode_Translator_Command
22 22
 {
23
-   /**
24
-    * Filters the string for use in an Apache Velocity (Java)
25
-    * regex string: escapes all special characters.
26
-    * 
27
-    * @param string $string
28
-    * @return string
29
-    */
23
+    /**
24
+     * Filters the string for use in an Apache Velocity (Java)
25
+     * regex string: escapes all special characters.
26
+     * 
27
+     * @param string $string
28
+     * @return string
29
+     */
30 30
     protected function filterRegexString(string $string) : string
31 31
     {
32 32
         $escape = array(
Please login to merge, or discard this patch.
src/Mailcode/Translator/Syntax.php 1 patch
Indentation   +21 added lines, -21 removed lines patch added patch discarded remove patch
@@ -23,9 +23,9 @@  discard block
 block discarded – undo
23 23
 {
24 24
     const ERROR_UNKNOWN_COMMAND_TYPE = 50401;
25 25
     
26
-   /**
27
-    * @var string
28
-    */
26
+    /**
27
+     * @var string
28
+     */
29 29
     protected $typeID;
30 30
     
31 31
     public function __construct(string $typeID)
@@ -33,22 +33,22 @@  discard block
 block discarded – undo
33 33
         $this->typeID = $typeID;
34 34
     }
35 35
     
36
-   /**
37
-    * Retrieves the syntax' type ID, e.g. "ApacheVelocity".
38
-    * @return string
39
-    */
36
+    /**
37
+     * Retrieves the syntax' type ID, e.g. "ApacheVelocity".
38
+     * @return string
39
+     */
40 40
     public function getTypeID() : string
41 41
     {
42 42
         return $this->typeID;
43 43
     }
44 44
     
45
-   /**
46
-    * Translates a single command to the target syntax.
47
-    * 
48
-    * @param Mailcode_Commands_Command $command
49
-    * @throws Mailcode_Translator_Exception
50
-    * @return string
51
-    */
45
+    /**
46
+     * Translates a single command to the target syntax.
47
+     * 
48
+     * @param Mailcode_Commands_Command $command
49
+     * @throws Mailcode_Translator_Exception
50
+     * @return string
51
+     */
52 52
     public function translateCommand(Mailcode_Commands_Command $command) : string
53 53
     {
54 54
         $translator = $this->createTranslator($command);
@@ -81,13 +81,13 @@  discard block
 block discarded – undo
81 81
         return $translator;
82 82
     }
83 83
     
84
-   /**
85
-    * Translates all safeguarded commands in the subject string to the 
86
-    * target syntax in one go.
87
-    * 
88
-    * @param Mailcode_Parser_Safeguard $safeguard
89
-    * @return string
90
-    */
84
+    /**
85
+     * Translates all safeguarded commands in the subject string to the 
86
+     * target syntax in one go.
87
+     * 
88
+     * @param Mailcode_Parser_Safeguard $safeguard
89
+     * @return string
90
+     */
91 91
     public function translateSafeguard(Mailcode_Parser_Safeguard $safeguard) : string
92 92
     {
93 93
         $subject = $safeguard->makeSafe();
Please login to merge, or discard this patch.
src/Mailcode/Collection/NestingValidator.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -29,19 +29,19 @@
 block discarded – undo
29 29
     const VALIDATION_COMMANDS_ALREADY_CLOSED = 49103;
30 30
     const VALIDATION_UNCLOSED_COMMAND = 49104;
31 31
     
32
-   /**
33
-    * @var Mailcode_Collection
34
-    */
32
+    /**
33
+     * @var Mailcode_Collection
34
+     */
35 35
     protected $collection;
36 36
     
37
-   /**
38
-    * @var OperationResult
39
-    */
37
+    /**
38
+     * @var OperationResult
39
+     */
40 40
     protected $validationResult;
41 41
     
42
-   /**
43
-    * @var Mailcode_Commands_Command_Type[]
44
-    */
42
+    /**
43
+     * @var Mailcode_Commands_Command_Type[]
44
+     */
45 45
     protected $stack = array();
46 46
     
47 47
     public function __construct(Mailcode_Collection $collection)
Please login to merge, or discard this patch.