Passed
Push — master ( a60ac2...b0c01a )
by
unknown
09:12
created
src/Mailcode/Parser/Statement/Tokenizer/Token/Operand.php 1 patch
Indentation   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -35,10 +35,10 @@  discard block
 block discarded – undo
35 35
         return true;
36 36
     }
37 37
     
38
-   /**
39
-    * Retrieves all known comparison operator signs.
40
-    * @return string[]
41
-    */
38
+    /**
39
+     * Retrieves all known comparison operator signs.
40
+     * @return string[]
41
+     */
42 42
     public static function getComparisonSigns() : array
43 43
     {
44 44
         return array(
@@ -51,10 +51,10 @@  discard block
 block discarded – undo
51 51
         );
52 52
     }
53 53
     
54
-   /**
55
-    * Retrieves all known arithmetic operator signs.
56
-    * @return string[]
57
-    */
54
+    /**
55
+     * Retrieves all known arithmetic operator signs.
56
+     * @return string[]
57
+     */
58 58
     public static function getArithmeticSigns() : array
59 59
     {
60 60
         return array(
@@ -65,11 +65,11 @@  discard block
 block discarded – undo
65 65
         );
66 66
     }
67 67
     
68
-   /**
69
-    * Whether the operator is comparison related (equals, not equals, smaller, greater...).
70
-    *  
71
-    * @return bool
72
-    */
68
+    /**
69
+     * Whether the operator is comparison related (equals, not equals, smaller, greater...).
70
+     *  
71
+     * @return bool
72
+     */
73 73
     public function isComparator() : bool
74 74
     {
75 75
         return 
@@ -81,11 +81,11 @@  discard block
 block discarded – undo
81 81
         $this->isSmallerOrEquals();
82 82
     }
83 83
     
84
-   /**
85
-    * Whether the operator is calculation related (minus, plus, divide, multiply).
86
-    * 
87
-    * @return bool
88
-    */
84
+    /**
85
+     * Whether the operator is calculation related (minus, plus, divide, multiply).
86
+     * 
87
+     * @return bool
88
+     */
89 89
     public function isCalculator() : bool
90 90
     {
91 91
         return 
Please login to merge, or discard this patch.
src/Mailcode/Traits/Formatting/HTMLHighlighting.php 1 patch
Indentation   +26 added lines, -26 removed lines patch added patch discarded remove patch
@@ -23,25 +23,25 @@  discard block
 block discarded – undo
23 23
  */
24 24
 trait Mailcode_Traits_Formatting_HTMLHighlighting
25 25
 {
26
-   /**
27
-    * Stored this way, so we can use isset() instead
28
-    * of using in_array, which is some magnitudes slower.
29
-    * The boolean value is not used otherwise.
30
-    *
31
-    * @var array<string,bool>
32
-    */
26
+    /**
27
+     * Stored this way, so we can use isset() instead
28
+     * of using in_array, which is some magnitudes slower.
29
+     * The boolean value is not used otherwise.
30
+     *
31
+     * @var array<string,bool>
32
+     */
33 33
     private array $excludeTags = array(
34 34
         'style' => true, // NOTE: style tags are excluded natively on the parser level.
35 35
         'script' => true
36 36
     );
37 37
     
38
-   /**
39
-    * Adds an HTML tag name to the list of tags within which
40
-    * commands may not be highlighted.
41
-    *
42
-    * @param string $tagName Case-insensitive.
43
-    * @return $this
44
-    */
38
+    /**
39
+     * Adds an HTML tag name to the list of tags within which
40
+     * commands may not be highlighted.
41
+     *
42
+     * @param string $tagName Case-insensitive.
43
+     * @return $this
44
+     */
45 45
     public function excludeTag(string $tagName) : self
46 46
     {
47 47
         $tagName = strtolower($tagName);
@@ -51,12 +51,12 @@  discard block
 block discarded – undo
51 51
         return $this;
52 52
     }
53 53
     
54
-   /**
55
-    * Adds several excluded tag names at once.
56
-    *
57
-    * @param string[] $tagNames
58
-    * @return $this
59
-    */
54
+    /**
55
+     * Adds several excluded tag names at once.
56
+     *
57
+     * @param string[] $tagNames
58
+     * @return $this
59
+     */
60 60
     public function excludeTags(array $tagNames) : self
61 61
     {
62 62
         foreach($tagNames as $tagName)
@@ -67,12 +67,12 @@  discard block
 block discarded – undo
67 67
         return $this;
68 68
     }
69 69
     
70
-   /**
71
-    * Whether the specified tag name is in the exclusion list.
72
-    *
73
-    * @param string $tagName
74
-    * @return bool
75
-    */
70
+    /**
71
+     * Whether the specified tag name is in the exclusion list.
72
+     *
73
+     * @param string $tagName
74
+     * @return bool
75
+     */
76 76
     public function isTagExcluded(string $tagName) : bool
77 77
     {
78 78
         $tagName = strtolower($tagName);
Please login to merge, or discard this patch.
src/Mailcode.php 1 patch
Indentation   +43 added lines, -43 removed lines patch added patch discarded remove patch
@@ -31,29 +31,29 @@  discard block
 block discarded – undo
31 31
     public const PACKAGE_NAME = 'Mailcode';
32 32
 
33 33
     /**
34
-    * @var Mailcode_Parser|NULL
35
-    */
34
+     * @var Mailcode_Parser|NULL
35
+     */
36 36
     protected $parser = null;
37 37
     
38
-   /**
39
-    * @var Mailcode_Commands|NULL
40
-    */
38
+    /**
39
+     * @var Mailcode_Commands|NULL
40
+     */
41 41
     protected $commands = null;
42 42
     
43
-   /**
44
-    * @var Mailcode_Variables|NULL
45
-    */
43
+    /**
44
+     * @var Mailcode_Variables|NULL
45
+     */
46 46
     protected $variables = null;
47 47
     
48
-   /**
49
-    * @var Mailcode_Translator|NULL
50
-    */
48
+    /**
49
+     * @var Mailcode_Translator|NULL
50
+     */
51 51
     protected $translator = null;
52 52
     
53
-   /**
54
-    * Creates a new mailcode instance.
55
-    * @return Mailcode
56
-    */
53
+    /**
54
+     * Creates a new mailcode instance.
55
+     * @return Mailcode
56
+     */
57 57
     public static function create() : Mailcode
58 58
     {
59 59
         return new Mailcode();
@@ -65,11 +65,11 @@  discard block
 block discarded – undo
65 65
     }
66 66
 
67 67
     /**
68
-    * Parses the string to detect all commands contained within.
69
-    * 
70
-    * @param string $string
71
-    * @return Mailcode_Collection
72
-    */
68
+     * Parses the string to detect all commands contained within.
69
+     * 
70
+     * @param string $string
71
+     * @return Mailcode_Collection
72
+     */
73 73
     public function parseString(string $string) : Mailcode_Collection
74 74
     {
75 75
         return $this->getParser()
@@ -77,11 +77,11 @@  discard block
 block discarded – undo
77 77
             ->getCollection();
78 78
     }
79 79
     
80
-   /**
81
-    * Retrieves the string parser instance used to detect commands.
82
-    * 
83
-    * @return Mailcode_Parser
84
-    */
80
+    /**
81
+     * Retrieves the string parser instance used to detect commands.
82
+     * 
83
+     * @return Mailcode_Parser
84
+     */
85 85
     public function getParser() : Mailcode_Parser
86 86
     {
87 87
         if(!isset($this->parser)) 
@@ -92,12 +92,12 @@  discard block
 block discarded – undo
92 92
         return $this->parser;
93 93
     }
94 94
     
95
-   /**
96
-    * Retrieves the commands collection, which is used to
97
-    * access information on the available commands.
98
-    * 
99
-    * @return Mailcode_Commands
100
-    */
95
+    /**
96
+     * Retrieves the commands collection, which is used to
97
+     * access information on the available commands.
98
+     * 
99
+     * @return Mailcode_Commands
100
+     */
101 101
     public function getCommands() : Mailcode_Commands
102 102
     {
103 103
         if(!isset($this->commands)) 
@@ -140,12 +140,12 @@  discard block
 block discarded – undo
140 140
         return $this->variables;
141 141
     }
142 142
     
143
-   /**
144
-    * Creates the translator, which can be used to convert commands
145
-    * to another supported syntax.
146
-    * 
147
-    * @return Mailcode_Translator
148
-    */
143
+    /**
144
+     * Creates the translator, which can be used to convert commands
145
+     * to another supported syntax.
146
+     * 
147
+     * @return Mailcode_Translator
148
+     */
149 149
     public function createTranslator() : Mailcode_Translator
150 150
     {
151 151
         if(!isset($this->translator))
@@ -156,12 +156,12 @@  discard block
 block discarded – undo
156 156
         return $this->translator;
157 157
     }
158 158
     
159
-   /**
160
-    * Creates the styler, which can be used to retrieve the 
161
-    * CSS required to style the highlighted commands in HTML.
162
-    * 
163
-    * @return Mailcode_Styler
164
-    */
159
+    /**
160
+     * Creates the styler, which can be used to retrieve the 
161
+     * CSS required to style the highlighted commands in HTML.
162
+     * 
163
+     * @return Mailcode_Styler
164
+     */
165 165
     public function createStyler() : Mailcode_Styler
166 166
     {
167 167
         return new Mailcode_Styler();
Please login to merge, or discard this patch.
src/Mailcode/Variables/Variable.php 1 patch
Indentation   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -32,34 +32,34 @@
 block discarded – undo
32 32
     public const VALIDATION_ERROR_PATH_UNDERSCORE = 48203;
33 33
     public const VALIDATION_ERROR_NAME_UNDERSCORE = 48204;
34 34
     
35
-   /**
36
-    * @var string
37
-    */
35
+    /**
36
+     * @var string
37
+     */
38 38
     protected string $path;
39 39
     
40
-   /**
41
-    * @var string
42
-    */
40
+    /**
41
+     * @var string
42
+     */
43 43
     protected string $name;
44 44
     
45
-   /**
46
-    * @var string
47
-    */
45
+    /**
46
+     * @var string
47
+     */
48 48
     protected string $matchedText;
49 49
     
50
-   /**
51
-    * @var string
52
-    */
50
+    /**
51
+     * @var string
52
+     */
53 53
     protected string $hash = '';
54 54
     
55
-   /**
56
-    * @var OperationResult|NULL
57
-    */
55
+    /**
56
+     * @var OperationResult|NULL
57
+     */
58 58
     protected ?OperationResult $validationResult = null;
59 59
     
60
-   /**
61
-    * @var array<string>
62
-    */
60
+    /**
61
+     * @var array<string>
62
+     */
63 63
     protected array $validations = array(
64 64
         'number_path',
65 65
         'number_name',
Please login to merge, or discard this patch.
Translator/Syntax/ApacheVelocity/Contains/ContainsStatementBuilder.php 1 patch
Indentation   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -225,27 +225,27 @@
 block discarded – undo
225 225
      * @return array<string,string>
226 226
      * @throws Mailcode_Exception
227 227
      */
228
-     private function parseVarName() : array
229
-     {
230
-         $tokens = explode('.', undollarize($this->variable->getFullName()));
231
-
232
-         if(count($tokens) === 2)
233
-         {
234
-             return array(
235
-                 'path' => $tokens[0],
236
-                 'name' => $tokens[1]
237
-             );
238
-         }
239
-
240
-         throw new Mailcode_Exception(
241
-             'Invalid variable name for a list property.',
242
-             sprintf(
243
-                 'Exactly 2 parts are required, variable [%s] has [%s].',
244
-                 $this->variable->getFullName(),
245
-                 count($tokens)
246
-             ),
247
-             self::ERROR_INVALID_LIST_VARIABLE_NAME
248
-         );
249
-     }
228
+        private function parseVarName() : array
229
+        {
230
+            $tokens = explode('.', undollarize($this->variable->getFullName()));
231
+
232
+            if(count($tokens) === 2)
233
+            {
234
+                return array(
235
+                    'path' => $tokens[0],
236
+                    'name' => $tokens[1]
237
+                );
238
+            }
239
+
240
+            throw new Mailcode_Exception(
241
+                'Invalid variable name for a list property.',
242
+                sprintf(
243
+                    'Exactly 2 parts are required, variable [%s] has [%s].',
244
+                    $this->variable->getFullName(),
245
+                    count($tokens)
246
+                ),
247
+                self::ERROR_INVALID_LIST_VARIABLE_NAME
248
+            );
249
+        }
250 250
 }
251 251
 
Please login to merge, or discard this patch.
src/Mailcode/Translator/Syntax.php 1 patch
Indentation   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -29,9 +29,9 @@  discard block
 block discarded – undo
29 29
     public const ERROR_UNKNOWN_COMMAND_TYPE = 50401;
30 30
     public const ERROR_INVALID_COMMAND_INSTANCE = 50402;
31 31
     
32
-   /**
33
-    * @var string
34
-    */
32
+    /**
33
+     * @var string
34
+     */
35 35
     protected string $typeID;
36 36
     
37 37
     public function __construct(string $typeID)
@@ -39,22 +39,22 @@  discard block
 block discarded – undo
39 39
         $this->typeID = $typeID;
40 40
     }
41 41
     
42
-   /**
43
-    * Retrieves the syntax's type ID, e.g. "ApacheVelocity".
44
-    * @return string
45
-    */
42
+    /**
43
+     * Retrieves the syntax's type ID, e.g. "ApacheVelocity".
44
+     * @return string
45
+     */
46 46
     public function getTypeID() : string
47 47
     {
48 48
         return $this->typeID;
49 49
     }
50 50
     
51
-   /**
52
-    * Translates a single command to the target syntax.
53
-    * 
54
-    * @param Mailcode_Commands_Command $command
55
-    * @throws Mailcode_Translator_Exception
56
-    * @return string
57
-    */
51
+    /**
52
+     * Translates a single command to the target syntax.
53
+     * 
54
+     * @param Mailcode_Commands_Command $command
55
+     * @throws Mailcode_Translator_Exception
56
+     * @return string
57
+     */
58 58
     public function translateCommand(Mailcode_Commands_Command $command) : string
59 59
     {
60 60
         return $this->createTranslator($command)->translate($command);
Please login to merge, or discard this patch.