Passed
Push — master ( 707ba4...19aa6f )
by Sebastian
02:43
created
src/Mailcode/Factory/CommandSets/Set.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -20,9 +20,9 @@
 block discarded – undo
20 20
  */
21 21
 abstract class Mailcode_Factory_CommandSets_Set
22 22
 {
23
-   /**
24
-    * @var Mailcode_Factory_Instantiator
25
-    */
23
+    /**
24
+     * @var Mailcode_Factory_Instantiator
25
+     */
26 26
     protected $instantiator;
27 27
     
28 28
     public function __construct()
Please login to merge, or discard this patch.
src/Mailcode/Factory/CommandSets.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -35,14 +35,14 @@
 block discarded – undo
35 35
      */
36 36
     private $misc;
37 37
     
38
-   /**
39
-    * @var Mailcode_Factory_CommandSets_Set_Set
40
-    */
38
+    /**
39
+     * @var Mailcode_Factory_CommandSets_Set_Set
40
+     */
41 41
     private $set;
42 42
     
43
-   /**
44
-    * @var Mailcode_Factory_CommandSets_Set_ElseIf
45
-    */
43
+    /**
44
+     * @var Mailcode_Factory_CommandSets_Set_ElseIf
45
+     */
46 46
     private $elseIf;
47 47
     
48 48
     public function if() : Mailcode_Factory_CommandSets_Set_If
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
     const VALIDATION_CANNOT_MIX_LOGIC_KEYWORDS = 60701;
32 32
     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)
@@ -136,9 +136,9 @@  discard block
 block discarded – undo
136 136
         }
137 137
     }
138 138
     
139
-   /**
140
-    * @return string[]
141
-    */
139
+    /**
140
+     * @return string[]
141
+     */
142 142
     private function detectParameters() : array
143 143
     {
144 144
         $params = $this->paramsString;
@@ -156,13 +156,13 @@  discard block
 block discarded – undo
156 156
         return $stack;
157 157
     }
158 158
 
159
-   /**
160
-    * @param string $params
161
-    * @param Mailcode_Commands_LogicKeywords_Keyword $keyword
162
-    * @param string[] $stack
163
-    * @throws Mailcode_Exception
164
-    * @return string
165
-    */
159
+    /**
160
+     * @param string $params
161
+     * @param Mailcode_Commands_LogicKeywords_Keyword $keyword
162
+     * @param string[] $stack
163
+     * @throws Mailcode_Exception
164
+     * @return string
165
+     */
166 166
     private function detectParamsKeyword(string $params, Mailcode_Commands_LogicKeywords_Keyword $keyword, array &$stack) : string
167 167
     {
168 168
         $search = $keyword->getMatchedString();
@@ -187,22 +187,22 @@  discard block
 block discarded – undo
187 187
         return $params;
188 188
     }
189 189
     
190
-   /**
191
-    * Extracts the parameters string to use for the 
192
-    * original command itself, omitting all the logic
193
-    * keywords for the sub-commands.
194
-    * 
195
-    * @return string
196
-    */
190
+    /**
191
+     * Extracts the parameters string to use for the 
192
+     * original command itself, omitting all the logic
193
+     * keywords for the sub-commands.
194
+     * 
195
+     * @return string
196
+     */
197 197
     public function getMainParamsString() : string
198 198
     {
199 199
         return $this->mainParams;
200 200
     }
201 201
     
202
-   /**
203
-    * Retrieves the detected keyword names.
204
-    * @return string[]
205
-    */
202
+    /**
203
+     * Retrieves the detected keyword names.
204
+     * @return string[]
205
+     */
206 206
     public function getDetectedNames() : array
207 207
     {
208 208
         $names = array();
@@ -220,23 +220,23 @@  discard block
 block discarded – undo
220 220
         return $names;
221 221
     }
222 222
     
223
-   /**
224
-    * Retrieves all keywords that were detected in the
225
-    * command's parameters string, if any.
226
-    * 
227
-    * @return Mailcode_Commands_LogicKeywords_Keyword[]
228
-    */
223
+    /**
224
+     * Retrieves all keywords that were detected in the
225
+     * command's parameters string, if any.
226
+     * 
227
+     * @return Mailcode_Commands_LogicKeywords_Keyword[]
228
+     */
229 229
     public function getKeywords() : array
230 230
     {
231 231
         return $this->keywords;
232 232
     }
233 233
     
234
-   /**
235
-    * Detects any keyword statements in the parameters by keyword name.
236
-    * 
237
-    * @param string $name
238
-    * @return Mailcode_Commands_LogicKeywords_Keyword[]
239
-    */
234
+    /**
235
+     * Detects any keyword statements in the parameters by keyword name.
236
+     * 
237
+     * @param string $name
238
+     * @return Mailcode_Commands_LogicKeywords_Keyword[]
239
+     */
240 240
     private function detectKeywords(string $name) : array
241 241
     {
242 242
         $regex = sprintf('/%1$s\s+([a-z\-0-9]+):|%1$s:/x', $name);
Please login to merge, or discard this patch.
src/Mailcode/Styler.php 1 patch
Indentation   +29 added lines, -29 removed lines patch added patch discarded remove patch
@@ -24,14 +24,14 @@  discard block
 block discarded – undo
24 24
 {
25 25
     const ERROR_CSS_FILE_NOT_FOUND = 60901;
26 26
     
27
-   /**
28
-    * @var string
29
-    */
27
+    /**
28
+     * @var string
29
+     */
30 30
     private $path;
31 31
     
32
-   /**
33
-    * @var string
34
-    */
32
+    /**
33
+     * @var string
34
+     */
35 35
     private $fileName = 'highlight.css';
36 36
     
37 37
     public function __construct()
@@ -54,22 +54,22 @@  discard block
 block discarded – undo
54 54
         $this->path = $path;
55 55
     }
56 56
    
57
-   /**
58
-    * Retrieves the raw CSS source for the highlighting.
59
-    * 
60
-    * @return string
61
-    */
57
+    /**
58
+     * Retrieves the raw CSS source for the highlighting.
59
+     * 
60
+     * @return string
61
+     */
62 62
     public function getCSS() : string
63 63
     {
64 64
         return FileHelper::readContents($this->path);
65 65
     }
66 66
     
67
-   /**
68
-    * Retrieves a fully formed `code` tag with the CSS,
69
-    * to inject inline into an HTML document.
70
-    * 
71
-    * @return string
72
-    */
67
+    /**
68
+     * Retrieves a fully formed `code` tag with the CSS,
69
+     * to inject inline into an HTML document.
70
+     * 
71
+     * @return string
72
+     */
73 73
     public function getStyleTag() : string
74 74
     {
75 75
         return sprintf(
@@ -78,23 +78,23 @@  discard block
 block discarded – undo
78 78
         );
79 79
     }
80 80
     
81
-   /**
82
-    * Retrieves the path to the stylesheet file.
83
-    * 
84
-    * @return string
85
-    */
81
+    /**
82
+     * Retrieves the path to the stylesheet file.
83
+     * 
84
+     * @return string
85
+     */
86 86
     public function getStylesheetPath() : string
87 87
     {
88 88
         return $this->path;
89 89
     }
90 90
     
91
-   /**
92
-    * Retrieves the URL to the stylesheet file, given the
93
-    * local URL to the application's vendor folder.
94
-    *  
95
-    * @param string $vendorURL The URL to the vendor folder (must be accessible in the webroot).
96
-    * @return string
97
-    */
91
+    /**
92
+     * Retrieves the URL to the stylesheet file, given the
93
+     * local URL to the application's vendor folder.
94
+     *  
95
+     * @param string $vendorURL The URL to the vendor folder (must be accessible in the webroot).
96
+     * @return string
97
+     */
98 98
     public function getStylesheetURL(string $vendorURL) : string
99 99
     {
100 100
         return sprintf(
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
     const VALIDATION_NO_COMMAND_CREATED = 61101;
30 30
     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/Commands/Highlighter.php 1 patch
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -20,19 +20,19 @@  discard block
 block discarded – undo
20 20
  */
21 21
 class Mailcode_Commands_Highlighter
22 22
 {
23
-   /**
24
-    * @var Mailcode_Commands_Command
25
-    */
23
+    /**
24
+     * @var Mailcode_Commands_Command
25
+     */
26 26
     protected $command;
27 27
     
28
-   /**
29
-    * @var string[]
30
-    */
28
+    /**
29
+     * @var string[]
30
+     */
31 31
     protected $parts = array();
32 32
     
33 33
     public function __construct(Mailcode_Commands_Command $command)
34 34
     {
35
-       $this->command = $command;
35
+        $this->command = $command;
36 36
     }
37 37
     
38 38
     public function highlight() : string
@@ -121,11 +121,11 @@  discard block
 block discarded – undo
121 121
         $this->appendParams($keyword->getCommand());
122 122
     }
123 123
     
124
-   /**
125
-    * @param string[] $classes
126
-    * @param string $content
127
-    * @return string
128
-    */
124
+    /**
125
+     * @param string[] $classes
126
+     * @param string $content
127
+     * @return string
128
+     */
129 129
     protected function renderTag(array $classes, string $content) : string
130 130
     {
131 131
         $parts = array();
Please login to merge, or discard this patch.
css/index.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -48,13 +48,13 @@
 block discarded – undo
48 48
     <body>
49 49
     	<p>
50 50
     		<?php 
51
-    		    pts('This showcases the command\'s syntax highlighting.');
52
-    		    pts(
53
-    		        'It is based on the %1$s color scheme%2$s:',
54
-    		        '<a href="https://ethanschoonover.com/solarized/">"Solarized"',
55
-    		        '</a>'
56
-		        );
57
-    		?>
51
+                pts('This showcases the command\'s syntax highlighting.');
52
+                pts(
53
+                    'It is based on the %1$s color scheme%2$s:',
54
+                    '<a href="https://ethanschoonover.com/solarized/">"Solarized"',
55
+                    '</a>'
56
+                );
57
+            ?>
58 58
 		</p>
59 59
 		<br>
60 60
     	<div class="commands">
Please login to merge, or discard this patch.
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
     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)
@@ -115,18 +115,18 @@  discard block
 block discarded – undo
115 115
         return $this->command;
116 116
     }
117 117
     
118
-   /**
119
-    * Serializes the placeholder's information into 
120
-    * an array with the following keys:
121
-    * 
122
-    *   - originalText
123
-    *   - replacementText
124
-    *   - normalizedText
125
-    *   - length
126
-    *   - id
127
-    * 
128
-    * @return array<string,string|integer>
129
-    */
118
+    /**
119
+     * Serializes the placeholder's information into 
120
+     * an array with the following keys:
121
+     * 
122
+     *   - originalText
123
+     *   - replacementText
124
+     *   - normalizedText
125
+     *   - length
126
+     *   - id
127
+     * 
128
+     * @return array<string,string|integer>
129
+     */
130 130
     public function serialize() : array
131 131
     {
132 132
         return array(
Please login to merge, or discard this patch.
src/Mailcode/Parser/Statement/Validator.php 1 patch
Indentation   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -28,9 +28,9 @@  discard block
 block discarded – undo
28 28
  */
29 29
 class Mailcode_Parser_Statement_Validator
30 30
 {
31
-   /**
32
-    * @var Mailcode_Parser_Statement
33
-    */
31
+    /**
32
+     * @var Mailcode_Parser_Statement
33
+     */
34 34
     private $statement;
35 35
     
36 36
     public function __construct(Mailcode_Parser_Statement $statement)
@@ -38,12 +38,12 @@  discard block
 block discarded – undo
38 38
         $this->statement = $statement;
39 39
     }
40 40
     
41
-   /**
42
-    * Creates a variable validator: checks whether a single
43
-    * variable token is present in the parameters.
44
-    * 
45
-    * @return Mailcode_Parser_Statement_Validator_Type_Variable
46
-    */
41
+    /**
42
+     * Creates a variable validator: checks whether a single
43
+     * variable token is present in the parameters.
44
+     * 
45
+     * @return Mailcode_Parser_Statement_Validator_Type_Variable
46
+     */
47 47
     public function createVariable() : Mailcode_Parser_Statement_Validator_Type_Variable
48 48
     {
49 49
         $validate = new Mailcode_Parser_Statement_Validator_Type_Variable($this->statement);
@@ -51,13 +51,13 @@  discard block
 block discarded – undo
51 51
         return $validate;
52 52
     }
53 53
     
54
-   /**
55
-    * Creates a keyword validator: checks whether a single
56
-    * keyword token is present in the parameters.
57
-    * 
58
-    * @param string $keywordName
59
-    * @return Mailcode_Parser_Statement_Validator_Type_Keyword
60
-    */
54
+    /**
55
+     * Creates a keyword validator: checks whether a single
56
+     * keyword token is present in the parameters.
57
+     * 
58
+     * @param string $keywordName
59
+     * @return Mailcode_Parser_Statement_Validator_Type_Keyword
60
+     */
61 61
     public function createKeyword(string $keywordName) : Mailcode_Parser_Statement_Validator_Type_Keyword
62 62
     {
63 63
         $validate = new Mailcode_Parser_Statement_Validator_Type_Keyword(
Please login to merge, or discard this patch.