Test Failed
Pull Request — master (#13)
by Sebastian
05:15
created
src/Mailcode/Parser/Safeguard/Placeholder.php 1 patch
Indentation   +24 added lines, -24 removed lines patch added patch discarded remove patch
@@ -25,24 +25,24 @@  discard block
 block discarded – undo
25 25
 {
26 26
     public const ERROR_PLACEHOLDER_TOO_LONG = 47901;
27 27
     
28
-   /**
29
-    * @var int
30
-    */
28
+    /**
29
+     * @var int
30
+     */
31 31
     protected $id;
32 32
     
33
-   /**
34
-    * @var Mailcode_Parser_Safeguard
35
-    */
33
+    /**
34
+     * @var Mailcode_Parser_Safeguard
35
+     */
36 36
     protected $safeguard;
37 37
 
38
-   /**
39
-    * @var Mailcode_Commands_Command
40
-    */
38
+    /**
39
+     * @var Mailcode_Commands_Command
40
+     */
41 41
     protected $command;
42 42
     
43
-   /**
44
-    * @var string
45
-    */
43
+    /**
44
+     * @var string
45
+     */
46 46
     protected $replacement = '';
47 47
     
48 48
     public function __construct(int $id, Mailcode_Commands_Command $command, Mailcode_Parser_Safeguard $safeguard)
@@ -104,18 +104,18 @@  discard block
 block discarded – undo
104 104
         return $this->command;
105 105
     }
106 106
     
107
-   /**
108
-    * Serializes the placeholder's information into 
109
-    * an array with the following keys:
110
-    * 
111
-    *   - originalText
112
-    *   - replacementText
113
-    *   - normalizedText
114
-    *   - length
115
-    *   - id
116
-    * 
117
-    * @return array<string,string|integer>
118
-    */
107
+    /**
108
+     * Serializes the placeholder's information into 
109
+     * an array with the following keys:
110
+     * 
111
+     *   - originalText
112
+     *   - replacementText
113
+     *   - normalizedText
114
+     *   - length
115
+     *   - id
116
+     * 
117
+     * @return array<string,string|integer>
118
+     */
119 119
     public function serialize() : array
120 120
     {
121 121
         return array(
Please login to merge, or discard this patch.
src/Mailcode/Parser/Statement/Validator/TokenType.php 1 patch
Indentation   +52 added lines, -52 removed lines patch added patch discarded remove patch
@@ -22,53 +22,53 @@  discard block
 block discarded – undo
22 22
 {
23 23
     public const VALIDATION_ERROR_COMMAND_WITHOUT_PARAMETERS = 62401;
24 24
     
25
-   /**
26
-    * @var integer
27
-    */
25
+    /**
26
+     * @var integer
27
+     */
28 28
     protected $searchIndex = -1;
29 29
     
30
-   /**
31
-    * @var Mailcode_Parser_Statement_Tokenizer_Token|NULL
32
-    */
30
+    /**
31
+     * @var Mailcode_Parser_Statement_Tokenizer_Token|NULL
32
+     */
33 33
     protected $token;
34 34
     
35
-   /**
36
-    * Retrieves the class name of the token type to 
37
-    * limit the token search to. Only a token of this
38
-    * type will be stored.
39
-    * 
40
-    * @return string
41
-    */
35
+    /**
36
+     * Retrieves the class name of the token type to 
37
+     * limit the token search to. Only a token of this
38
+     * type will be stored.
39
+     * 
40
+     * @return string
41
+     */
42 42
     abstract protected function getTokenClass() : string;
43 43
     
44
-   /**
45
-    * Allows the validator to apply custom search
46
-    * criteria to the tokens that are searched 
47
-    * through to find the target token.
48
-    * 
49
-    * NOTE: Should return true if there are no
50
-    * custom criteria to apply.
51
-    * 
52
-    * @param Mailcode_Parser_Statement_Tokenizer_Token $token
53
-    * @return bool
54
-    */
44
+    /**
45
+     * Allows the validator to apply custom search
46
+     * criteria to the tokens that are searched 
47
+     * through to find the target token.
48
+     * 
49
+     * NOTE: Should return true if there are no
50
+     * custom criteria to apply.
51
+     * 
52
+     * @param Mailcode_Parser_Statement_Tokenizer_Token $token
53
+     * @return bool
54
+     */
55 55
     abstract protected function _isMatch(Mailcode_Parser_Statement_Tokenizer_Token $token) : bool;
56 56
     
57
-   /**
58
-    * @return Mailcode_Parser_Statement_Tokenizer_Token
59
-    */
57
+    /**
58
+     * @return Mailcode_Parser_Statement_Tokenizer_Token
59
+     */
60 60
     abstract public function getToken();
61 61
     
62
-   /**
63
-    * Checks if the specified token matches the current
64
-    * search criteria (index, type...). If the token is
65
-    * a match, the `_isMatch()` method is called to allow
66
-    * the validator class to apply some custom criteria. 
67
-    * 
68
-    * @param Mailcode_Parser_Statement_Tokenizer_Token $token
69
-    * @param int $index
70
-    * @return bool
71
-    */
62
+    /**
63
+     * Checks if the specified token matches the current
64
+     * search criteria (index, type...). If the token is
65
+     * a match, the `_isMatch()` method is called to allow
66
+     * the validator class to apply some custom criteria. 
67
+     * 
68
+     * @param Mailcode_Parser_Statement_Tokenizer_Token $token
69
+     * @param int $index
70
+     * @return bool
71
+     */
72 72
     protected function isMatch(Mailcode_Parser_Statement_Tokenizer_Token $token, int $index) : bool
73 73
     {
74 74
         // filter out tokens of other types
@@ -85,13 +85,13 @@  discard block
 block discarded – undo
85 85
         return $this->_isMatch($token);
86 86
     }
87 87
     
88
-   /**
89
-    * Attempts to find a token in the statement
90
-    * that matches the current criteria, and the
91
-    * first one it finds is returned.
92
-    * 
93
-    * @return Mailcode_Parser_Statement_Tokenizer_Token|NULL
94
-    */
88
+    /**
89
+     * Attempts to find a token in the statement
90
+     * that matches the current criteria, and the
91
+     * first one it finds is returned.
92
+     * 
93
+     * @return Mailcode_Parser_Statement_Tokenizer_Token|NULL
94
+     */
95 95
     protected function findToken() : ?Mailcode_Parser_Statement_Tokenizer_Token
96 96
     {
97 97
         $tokens = $this->params->getTokens();
@@ -120,14 +120,14 @@  discard block
 block discarded – undo
120 120
         return false;
121 121
     }
122 122
     
123
-   /**
124
-    * Searches for a specific token index.
125
-    * 
126
-    * NOTE: only relevant when trying to find a single token.
127
-    * 
128
-    * @param int $index
129
-    * @return $this
130
-    */
123
+    /**
124
+     * Searches for a specific token index.
125
+     * 
126
+     * NOTE: only relevant when trying to find a single token.
127
+     * 
128
+     * @param int $index
129
+     * @return $this
130
+     */
131 131
     public function setIndex(int $index) : Mailcode_Parser_Statement_Validator_TokenType
132 132
     {
133 133
         $this->searchIndex = $index;
Please login to merge, or discard this patch.
src/Mailcode/Parser/Statement/Validator/Type/Operand.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -22,9 +22,9 @@
 block discarded – undo
22 22
 {
23 23
     public const ERROR_NO_OPERAND_TOKEN_FOUND = 62901;
24 24
     
25
-   /**
26
-    * @var string
27
-    */
25
+    /**
26
+     * @var string
27
+     */
28 28
     private $sign = '';
29 29
     
30 30
     protected function getTokenClass() : string
Please login to merge, or discard this patch.
src/Mailcode/Parser/Statement/Validator/Type/Keyword.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -22,10 +22,10 @@
 block discarded – undo
22 22
 {
23 23
     public const ERROR_NO_KEYWORD_TOKEN_FOUND = 62701;
24 24
     
25
-   /**
26
-    * The name of the keyword, with ":" appended.
27
-    * @var string
28
-    */
25
+    /**
26
+     * The name of the keyword, with ":" appended.
27
+     * @var string
28
+     */
29 29
     protected $keywordName;
30 30
     
31 31
     public function __construct(Mailcode_Parser_Statement $statement, string $keywordName)
Please login to merge, or discard this patch.
src/Mailcode/Date/FormatInfo/Character.php 1 patch
Indentation   +34 added lines, -34 removed lines patch added patch discarded remove patch
@@ -23,19 +23,19 @@  discard block
 block discarded – undo
23 23
 {
24 24
     public const ERROR_UNHANDLED_CHARTYPE = 55601;
25 25
     
26
-   /**
27
-    * @var string
28
-    */
26
+    /**
27
+     * @var string
28
+     */
29 29
     private $type;
30 30
     
31
-   /**
32
-    * @var string
33
-    */
31
+    /**
32
+     * @var string
33
+     */
34 34
     private $char;
35 35
     
36
-   /**
37
-    * @var string
38
-    */
36
+    /**
37
+     * @var string
38
+     */
39 39
     private $description;
40 40
     
41 41
     public function __construct(string $type, string $char, string $description)
@@ -45,46 +45,46 @@  discard block
 block discarded – undo
45 45
         $this->description = $description;
46 46
     }
47 47
     
48
-   /**
49
-    * Retrieves the format character (PHP date format).
50
-    * 
51
-    * @return string 
52
-    */
48
+    /**
49
+     * Retrieves the format character (PHP date format).
50
+     * 
51
+     * @return string 
52
+     */
53 53
     public function getChar() : string
54 54
     {
55 55
         return $this->char;
56 56
     }
57 57
     
58
-   /**
59
-    * Retrieves a human readable description of the character's role.
60
-    * 
61
-    * @return string
62
-    */
58
+    /**
59
+     * Retrieves a human readable description of the character's role.
60
+     * 
61
+     * @return string
62
+     */
63 63
     public function getDescription() : string
64 64
     {
65 65
         return $this->description;
66 66
     }
67 67
     
68
-   /**
69
-    * Retrieves the character type ID.
70
-    * 
71
-    * @return string
72
-    * 
73
-    * @see Mailcode_Date_FormatInfo::CHARTYPE_DATE
74
-    * @see Mailcode_Date_FormatInfo::CHARTYPE_TIME
75
-    * @see Mailcode_Date_FormatInfo::CHARTYPE_PUNCTUATION
76
-    */
68
+    /**
69
+     * Retrieves the character type ID.
70
+     * 
71
+     * @return string
72
+     * 
73
+     * @see Mailcode_Date_FormatInfo::CHARTYPE_DATE
74
+     * @see Mailcode_Date_FormatInfo::CHARTYPE_TIME
75
+     * @see Mailcode_Date_FormatInfo::CHARTYPE_PUNCTUATION
76
+     */
77 77
     public function getTypeID() : string
78 78
     {
79 79
         return $this->type;
80 80
     }
81 81
     
82
-   /**
83
-    * Retrieves a human readable label for the character's type, e.g. "Date", "Time", "Punctuation".
84
-    * 
85
-    * @throws Mailcode_Exception If the character type is unknown.
86
-    * @return string
87
-    */
82
+    /**
83
+     * Retrieves a human readable label for the character's type, e.g. "Date", "Time", "Punctuation".
84
+     * 
85
+     * @throws Mailcode_Exception If the character type is unknown.
86
+     * @return string
87
+     */
88 88
     public function getTypeLabel() : string
89 89
     {
90 90
         switch($this->type)
Please login to merge, or discard this patch.
src/Mailcode/Commands/LogicKeywords.php 1 patch
Indentation   +45 added lines, -45 removed lines patch added patch discarded remove patch
@@ -31,27 +31,27 @@  discard block
 block discarded – undo
31 31
     public const VALIDATION_CANNOT_MIX_LOGIC_KEYWORDS = 60701;
32 32
     public const VALIDATION_INVALID_SUB_COMMAND = 60702;
33 33
     
34
-   /**
35
-    * @var string
36
-    */
34
+    /**
35
+     * @var string
36
+     */
37 37
     private $paramsString;
38 38
     
39
-   /**
40
-    * @var string[]
41
-    */
39
+    /**
40
+     * @var string[]
41
+     */
42 42
     private $names = array(
43 43
         'and', 
44 44
         'or'
45 45
     );
46 46
     
47
-   /**
48
-    * @var Mailcode_Commands_LogicKeywords_Keyword[]
49
-    */
47
+    /**
48
+     * @var Mailcode_Commands_LogicKeywords_Keyword[]
49
+     */
50 50
     private $keywords = array();
51 51
     
52
-   /**
53
-    * @var string
54
-    */
52
+    /**
53
+     * @var string
54
+     */
55 55
     private $mainParams = '';
56 56
     
57 57
     public function __construct(Mailcode_Commands_Command $command, string $paramsString)
@@ -137,9 +137,9 @@  discard block
 block discarded – undo
137 137
         }
138 138
     }
139 139
     
140
-   /**
141
-    * @return string[]
142
-    */
140
+    /**
141
+     * @return string[]
142
+     */
143 143
     private function detectParameters() : array
144 144
     {
145 145
         $params = $this->paramsString;
@@ -157,13 +157,13 @@  discard block
 block discarded – undo
157 157
         return $stack;
158 158
     }
159 159
 
160
-   /**
161
-    * @param string $params
162
-    * @param Mailcode_Commands_LogicKeywords_Keyword $keyword
163
-    * @param string[] $stack
164
-    * @throws Mailcode_Exception
165
-    * @return string
166
-    */
160
+    /**
161
+     * @param string $params
162
+     * @param Mailcode_Commands_LogicKeywords_Keyword $keyword
163
+     * @param string[] $stack
164
+     * @throws Mailcode_Exception
165
+     * @return string
166
+     */
167 167
     private function detectParamsKeyword(string $params, Mailcode_Commands_LogicKeywords_Keyword $keyword, array &$stack) : string
168 168
     {
169 169
         $search = $keyword->getMatchedString();
@@ -188,22 +188,22 @@  discard block
 block discarded – undo
188 188
         return $params;
189 189
     }
190 190
     
191
-   /**
192
-    * Extracts the parameters string to use for the 
193
-    * original command itself, omitting all the logic
194
-    * keywords for the sub-commands.
195
-    * 
196
-    * @return string
197
-    */
191
+    /**
192
+     * Extracts the parameters string to use for the 
193
+     * original command itself, omitting all the logic
194
+     * keywords for the sub-commands.
195
+     * 
196
+     * @return string
197
+     */
198 198
     public function getMainParamsString() : string
199 199
     {
200 200
         return $this->mainParams;
201 201
     }
202 202
     
203
-   /**
204
-    * Retrieves the detected keyword names.
205
-    * @return string[]
206
-    */
203
+    /**
204
+     * Retrieves the detected keyword names.
205
+     * @return string[]
206
+     */
207 207
     public function getDetectedNames() : array
208 208
     {
209 209
         $names = array();
@@ -221,23 +221,23 @@  discard block
 block discarded – undo
221 221
         return $names;
222 222
     }
223 223
     
224
-   /**
225
-    * Retrieves all keywords that were detected in the
226
-    * command's parameters string, if any.
227
-    * 
228
-    * @return Mailcode_Commands_LogicKeywords_Keyword[]
229
-    */
224
+    /**
225
+     * Retrieves all keywords that were detected in the
226
+     * command's parameters string, if any.
227
+     * 
228
+     * @return Mailcode_Commands_LogicKeywords_Keyword[]
229
+     */
230 230
     public function getKeywords() : array
231 231
     {
232 232
         return $this->keywords;
233 233
     }
234 234
     
235
-   /**
236
-    * Detects any keyword statements in the parameters by keyword name.
237
-    * 
238
-    * @param string $name
239
-    * @return Mailcode_Commands_LogicKeywords_Keyword[]
240
-    */
235
+    /**
236
+     * Detects any keyword statements in the parameters by keyword name.
237
+     * 
238
+     * @param string $name
239
+     * @return Mailcode_Commands_LogicKeywords_Keyword[]
240
+     */
241 241
     private function detectKeywords(string $name) : array
242 242
     {
243 243
         $regex = sprintf('/%1$s\s+([a-z\-0-9]+):|%1$s:/x', $name);
Please login to merge, or discard this patch.
src/Mailcode/Commands/LogicKeywords/Keyword.php 1 patch
Indentation   +51 added lines, -51 removed lines patch added patch discarded remove patch
@@ -29,39 +29,39 @@  discard block
 block discarded – undo
29 29
     public const VALIDATION_NO_COMMAND_CREATED = 61101;
30 30
     public const VALIDATION_INVALID_COMMAND_CREATED = 61102;
31 31
     
32
-   /**
33
-    * @var Mailcode_Commands_LogicKeywords
34
-    */
32
+    /**
33
+     * @var Mailcode_Commands_LogicKeywords
34
+     */
35 35
     private $keywords;
36 36
     
37
-   /**
38
-    * @var string
39
-    */
37
+    /**
38
+     * @var string
39
+     */
40 40
     private $name;
41 41
     
42
-   /**
43
-    * @var string
44
-    */
42
+    /**
43
+     * @var string
44
+     */
45 45
     private $keywordType;
46 46
     
47
-   /**
48
-    * @var string
49
-    */
47
+    /**
48
+     * @var string
49
+     */
50 50
     private $matchedString;
51 51
     
52
-   /**
53
-    * @var string
54
-    */
52
+    /**
53
+     * @var string
54
+     */
55 55
     private $params = '';
56 56
     
57
-   /**
58
-    * @var boolean
59
-    */
57
+    /**
58
+     * @var boolean
59
+     */
60 60
     private $paramsSet = false;
61 61
     
62
-   /**
63
-    * @var Mailcode_Collection
64
-    */
62
+    /**
63
+     * @var Mailcode_Collection
64
+     */
65 65
     private $collection;
66 66
     
67 67
     public function __construct(Mailcode_Commands_LogicKeywords $keywords, string $name, string $matchedString, string $type)
@@ -72,10 +72,10 @@  discard block
 block discarded – undo
72 72
         $this->matchedString = $matchedString;
73 73
     }
74 74
     
75
-   /**
76
-    * The keyword name, e.g. "and". Always lowercase.
77
-    * @return string
78
-    */
75
+    /**
76
+     * The keyword name, e.g. "and". Always lowercase.
77
+     * @return string
78
+     */
79 79
     public function getName() : string
80 80
     {
81 81
         return $this->name;
@@ -98,24 +98,24 @@  discard block
 block discarded – undo
98 98
         return $string;
99 99
     }
100 100
     
101
-   /**
102
-    * The full string that was matched in the command's parameters
103
-    * string. Examples: "and:", "and variable:"...
104
-    * 
105
-    * @return string
106
-    */
101
+    /**
102
+     * The full string that was matched in the command's parameters
103
+     * string. Examples: "and:", "and variable:"...
104
+     * 
105
+     * @return string
106
+     */
107 107
     public function getMatchedString() : string
108 108
     {
109 109
         return $this->matchedString;
110 110
     }
111 111
     
112
-   /**
113
-    * Sets the parameters string matching this logic keyword,
114
-    * which is used to build the actual sub-command. Set by
115
-    * the LogicKeywords class instance.
116
-    * 
117
-    * @param string $params
118
-    */
112
+    /**
113
+     * Sets the parameters string matching this logic keyword,
114
+     * which is used to build the actual sub-command. Set by
115
+     * the LogicKeywords class instance.
116
+     * 
117
+     * @param string $params
118
+     */
119 119
     public function setParamsString(string $params) : void
120 120
     {
121 121
         if($this->paramsSet)
@@ -133,13 +133,13 @@  discard block
 block discarded – undo
133 133
         $this->createCommand();
134 134
     }
135 135
     
136
-   /**
137
-    * Retrieves the full command string used to create 
138
-    * the actual command. For opening commands like IF,
139
-    * this includes the closing {end} command.
140
-    * 
141
-    * @return string
142
-    */
136
+    /**
137
+     * Retrieves the full command string used to create 
138
+     * the actual command. For opening commands like IF,
139
+     * this includes the closing {end} command.
140
+     * 
141
+     * @return string
142
+     */
143 143
     public function getCommandString() : string
144 144
     {
145 145
         $string = sprintf(
@@ -182,12 +182,12 @@  discard block
 block discarded – undo
182 182
         }
183 183
     }
184 184
     
185
-   /**
186
-    * Retrieves the command for the keyword.
187
-    * 
188
-    * @throws Mailcode_Exception
189
-    * @return Mailcode_Commands_Command
190
-    */
185
+    /**
186
+     * Retrieves the command for the keyword.
187
+     * 
188
+     * @throws Mailcode_Exception
189
+     * @return Mailcode_Commands_Command
190
+     */
191 191
     public function getCommand() : Mailcode_Commands_Command
192 192
     {
193 193
         $command = $this->collection->getFirstCommand();
Please login to merge, or discard this patch.
src/Mailcode/StringContainer.php 1 patch
Indentation   +66 added lines, -66 removed lines patch added patch discarded remove patch
@@ -26,39 +26,39 @@  discard block
 block discarded – undo
26 26
     public const ERROR_INVALID_CALLABLE = 65701;
27 27
     public const ERROR_UPDATE_CALLED_DURING_UPDATE_OPERATION = 65702;
28 28
     
29
-   /**
30
-    * @var string
31
-    */
29
+    /**
30
+     * @var string
31
+     */
32 32
     private $subject;
33 33
     
34
-   /**
35
-    * @var integer
36
-    */
34
+    /**
35
+     * @var integer
36
+     */
37 37
     private static $listenerCounter = 0;
38 38
     
39
-   /**
40
-    * @var callable[]
41
-    */
39
+    /**
40
+     * @var callable[]
41
+     */
42 42
     private $listeners = array();
43 43
     
44
-   /**
45
-    * @var boolean
46
-    */
44
+    /**
45
+     * @var boolean
46
+     */
47 47
     private $updating = false;
48 48
     
49
-   /**
50
-    * @var integer
51
-    */
49
+    /**
50
+     * @var integer
51
+     */
52 52
     private static $idCounter = 0;
53 53
     
54
-   /**
55
-    * @var integer
56
-    */
54
+    /**
55
+     * @var integer
56
+     */
57 57
     private $id;
58 58
     
59
-   /**
60
-    * @var integer
61
-    */
59
+    /**
60
+     * @var integer
61
+     */
62 62
     private $length;
63 63
     
64 64
     public function __construct(string $subject)
@@ -75,16 +75,16 @@  discard block
 block discarded – undo
75 75
         return $this->id;
76 76
     }
77 77
     
78
-   /**
79
-    * Updates the string with the specified string.
80
-    * Notifies all listeners of the change.
81
-    * 
82
-    * @param string $subject
83
-    * @throws Mailcode_Exception
84
-    * @return bool Whether the string had modifications.
85
-    * 
86
-    * @see Mailcode_StringContainer::ERROR_UPDATE_CALLED_DURING_UPDATE_OPERATION
87
-    */
78
+    /**
79
+     * Updates the string with the specified string.
80
+     * Notifies all listeners of the change.
81
+     * 
82
+     * @param string $subject
83
+     * @throws Mailcode_Exception
84
+     * @return bool Whether the string had modifications.
85
+     * 
86
+     * @see Mailcode_StringContainer::ERROR_UPDATE_CALLED_DURING_UPDATE_OPERATION
87
+     */
88 88
     public function updateString(string $subject) : bool
89 89
     {
90 90
         // avoid triggering an update if there are no changes in the string
@@ -117,27 +117,27 @@  discard block
 block discarded – undo
117 117
         return true;
118 118
     }
119 119
     
120
-   /**
121
-    * Retrieves the stored string.
122
-    * 
123
-    * @return string
124
-    */
120
+    /**
121
+     * Retrieves the stored string.
122
+     * 
123
+     * @return string
124
+     */
125 125
     public function getString() : string
126 126
     {
127 127
         return $this->subject;
128 128
     }
129 129
     
130
-   /**
131
-    * Adds a listener that will be informed every time the string is modified.
132
-    * The callback gets the string container instance as parameter.
133
-    * 
134
-    * @param callable $callback
135
-    * @throws Mailcode_Exception If it is not a valid callable.
136
-    * @return int The listener number, to be able to remove it using `removeListener()`.
137
-    * 
138
-    * @see Mailcode_StringContainer::removeListener()
139
-    * @see Mailcode_StringContainer::ERROR_INVALID_CALLABLE
140
-    */
130
+    /**
131
+     * Adds a listener that will be informed every time the string is modified.
132
+     * The callback gets the string container instance as parameter.
133
+     * 
134
+     * @param callable $callback
135
+     * @throws Mailcode_Exception If it is not a valid callable.
136
+     * @return int The listener number, to be able to remove it using `removeListener()`.
137
+     * 
138
+     * @see Mailcode_StringContainer::removeListener()
139
+     * @see Mailcode_StringContainer::ERROR_INVALID_CALLABLE
140
+     */
141 141
     public function addListener($callback) : int
142 142
     {
143 143
         self::$listenerCounter++;
@@ -164,12 +164,12 @@  discard block
 block discarded – undo
164 164
         return $this->length;
165 165
     }
166 166
     
167
-   /**
168
-    * Removes an existing listener by its ID.
169
-    * Has no effect if it does not exist, or has already been removed.
170
-    * 
171
-    * @param int $listenerID
172
-    */
167
+    /**
168
+     * Removes an existing listener by its ID.
169
+     * Has no effect if it does not exist, or has already been removed.
170
+     * 
171
+     * @param int $listenerID
172
+     */
173 173
     public function removeListener(int $listenerID) : void
174 174
     {
175 175
         if(isset($this->listeners[$listenerID]))
@@ -178,13 +178,13 @@  discard block
 block discarded – undo
178 178
         }
179 179
     }
180 180
     
181
-   /**
182
-    * Replaces all substrings matching needle with the replacement text.
183
-    *  
184
-    * @param string $needle
185
-    * @param string $replacement
186
-    * @return bool
187
-    */
181
+    /**
182
+     * Replaces all substrings matching needle with the replacement text.
183
+     *  
184
+     * @param string $needle
185
+     * @param string $replacement
186
+     * @return bool
187
+     */
188 188
     public function replaceSubstrings(string $needle, string $replacement) : bool
189 189
     {
190 190
         $string = str_replace($needle, $replacement, $this->subject);
@@ -192,12 +192,12 @@  discard block
 block discarded – undo
192 192
         return $this->updateString($string);
193 193
     }
194 194
 
195
-   /**
196
-    * Get the position of a substring in the string.
197
-    * 
198
-    * @param string $needle
199
-    * @return int|bool The zero-based position, or false if not found.
200
-    */
195
+    /**
196
+     * Get the position of a substring in the string.
197
+     * 
198
+     * @param string $needle
199
+     * @return int|bool The zero-based position, or false if not found.
200
+     */
201 201
     public function getSubstrPosition(string $needle)
202 202
     {
203 203
         return mb_strpos($this->subject, $needle);
Please login to merge, or discard this patch.
src/Mailcode/Variables/Collection/Regular.php 1 patch
Indentation   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -20,9 +20,9 @@  discard block
 block discarded – undo
20 20
  */
21 21
 class Mailcode_Variables_Collection_Regular extends Mailcode_Variables_Collection
22 22
 {
23
-   /**
24
-    * @var Mailcode_Variables_Collection_Invalid
25
-    */
23
+    /**
24
+     * @var Mailcode_Variables_Collection_Invalid
25
+     */
26 26
     protected Mailcode_Variables_Collection_Invalid $invalid;
27 27
 
28 28
     protected function init() : void
@@ -47,30 +47,30 @@  discard block
 block discarded – undo
47 47
         return $this;
48 48
     }
49 49
 
50
-   /**
51
-    * Whether any of the variables in the collection are invalid.
52
-    * 
53
-    * @return bool
54
-    */
50
+    /**
51
+     * Whether any of the variables in the collection are invalid.
52
+     * 
53
+     * @return bool
54
+     */
55 55
     public function hasInvalid() : bool
56 56
     {
57 57
         return $this->invalid->hasVariables();
58 58
     }
59 59
     
60
-   /**
61
-    * Retrieves the collection of invalid variables, if any.
62
-    * Behaves like a variables collection.
63
-    * 
64
-    * @return Mailcode_Variables_Collection_Invalid
65
-    */
60
+    /**
61
+     * Retrieves the collection of invalid variables, if any.
62
+     * Behaves like a variables collection.
63
+     * 
64
+     * @return Mailcode_Variables_Collection_Invalid
65
+     */
66 66
     public function getInvalid() : Mailcode_Variables_Collection_Invalid
67 67
     {
68 68
         return $this->invalid;
69 69
     }
70 70
     
71
-   /**
72
-    * @return Mailcode_Variables_Collection_Regular
73
-    */
71
+    /**
72
+     * @return Mailcode_Variables_Collection_Regular
73
+     */
74 74
     public function mergeWith(Mailcode_Variables_Collection $collection) : Mailcode_Variables_Collection
75 75
     {
76 76
         parent::mergeWith($collection);
Please login to merge, or discard this patch.