Passed
Push — master ( d8dc61...dfdb64 )
by Sebastian
09:05
created
src/Mailcode/Traits/Commands/Validation/EmptyParams.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -29,12 +29,12 @@
 block discarded – undo
29 29
 
30 30
     protected function validateSyntax_params_empty() : void
31 31
     {
32
-        if(!$this->requiresParameters())
32
+        if (!$this->requiresParameters())
33 33
         {
34 34
             return;
35 35
         }
36 36
 
37
-        if(empty($this->paramsString))
37
+        if (empty($this->paramsString))
38 38
         {
39 39
             $this->validationResult->makeError(
40 40
                 t('Parameters have to be specified.'),
Please login to merge, or discard this patch.
src/Mailcode/Traits/Commands/Validation/TypeSupported.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -35,14 +35,14 @@
 block discarded – undo
35 35
 
36 36
     protected function validateSyntax_type_supported() : void
37 37
     {
38
-        if(!$this->supportsType() || empty($this->type))
38
+        if (!$this->supportsType() || empty($this->type))
39 39
         {
40 40
             return;
41 41
         }
42 42
 
43 43
         $types = $this->getSupportedTypes();
44 44
 
45
-        if(!in_array($this->type, $types))
45
+        if (!in_array($this->type, $types))
46 46
         {
47 47
             $this->validationResult->makeError(
48 48
                 t('The command addon %1$s is not supported.', $this->type).' '.
Please login to merge, or discard this patch.
src/Mailcode/Traits/Commands/Validation/ParamKeywords.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -31,14 +31,14 @@
 block discarded – undo
31 31
 
32 32
     protected function validateSyntax_params_keywords() : void
33 33
     {
34
-        if(!$this->supportsLogicKeywords())
34
+        if (!$this->supportsLogicKeywords())
35 35
         {
36 36
             return;
37 37
         }
38 38
 
39 39
         $this->logicKeywords = new Mailcode_Commands_LogicKeywords($this, $this->paramsString);
40 40
 
41
-        if(!$this->logicKeywords->isValid())
41
+        if (!$this->logicKeywords->isValid())
42 42
         {
43 43
             $this->validationResult->makeError(
44 44
                 t('Invalid parameters:').' '.$this->logicKeywords->getErrorMessage(),
Please login to merge, or discard this patch.
src/Mailcode/Traits/Commands/Validation/TypeUnsupported.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
 
31 31
     protected function validateSyntax_type_unsupported() : void
32 32
     {
33
-        if($this->supportsType() || empty($this->type))
33
+        if ($this->supportsType() || empty($this->type))
34 34
         {
35 35
             return;
36 36
         }
Please login to merge, or discard this patch.
src/Mailcode/Renderer.php 3 patches
Spacing   +26 added lines, -26 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
     * @param bool $highlighted
33 33
     * @return Mailcode_Renderer
34 34
     */
35
-    public function setOutputHighlighted(bool $highlighted=true) : Mailcode_Renderer
35
+    public function setOutputHighlighted(bool $highlighted = true) : Mailcode_Renderer
36 36
     {
37 37
         $this->highlighted = $highlighted;
38 38
         
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
         return $this->command2string(Mailcode_Factory::show()->snippet($snippetName));
56 56
     }
57 57
     
58
-    public function setVar(string $variableName, string $value, bool $quoteValue=false) : string
58
+    public function setVar(string $variableName, string $value, bool $quoteValue = false) : string
59 59
     {
60 60
         return $this->command2string(Mailcode_Factory::set()->var($variableName, $value, $quoteValue));
61 61
     }
@@ -65,79 +65,79 @@  discard block
 block discarded – undo
65 65
         return $this->command2string(Mailcode_Factory::set()->varString($variableName, $value));
66 66
     }
67 67
     
68
-    public function if(string $condition, string $type='') : string
68
+    public function if (string $condition, string $type = '') : string
69 69
     {
70
-        return $this->command2string(Mailcode_Factory::if()->if($condition, $type));
70
+        return $this->command2string(Mailcode_Factory::if ()->if($condition, $type));
71 71
     }
72 72
     
73
-    public function ifVar(string $variable, string $operand, string $value, bool $quoteValue=false) : string
73
+    public function ifVar(string $variable, string $operand, string $value, bool $quoteValue = false) : string
74 74
     {
75
-        return $this->command2string(Mailcode_Factory::if()->var($variable, $operand, $value, $quoteValue));
75
+        return $this->command2string(Mailcode_Factory::if ()->var($variable, $operand, $value, $quoteValue));
76 76
     }
77 77
 
78 78
     public function ifVarString(string $variable, string $operand, string $value) : string
79 79
     {
80
-        return $this->command2string(Mailcode_Factory::if()->varString($variable, $operand, $value));
80
+        return $this->command2string(Mailcode_Factory::if ()->varString($variable, $operand, $value));
81 81
     }
82 82
     
83
-    public function ifVarEquals(string $variable, string $value, bool $quoteValue=false) : string
83
+    public function ifVarEquals(string $variable, string $value, bool $quoteValue = false) : string
84 84
     {
85
-        return $this->command2string(Mailcode_Factory::if()->varEquals($variable, $value, $quoteValue));
85
+        return $this->command2string(Mailcode_Factory::if ()->varEquals($variable, $value, $quoteValue));
86 86
     }
87 87
 
88 88
     public function ifVarEqualsString(string $variable, string $value) : string
89 89
     {
90
-        return $this->command2string(Mailcode_Factory::if()->varEqualsString($variable, $value));
90
+        return $this->command2string(Mailcode_Factory::if ()->varEqualsString($variable, $value));
91 91
     }
92 92
     
93
-    public function ifVarNotEquals(string $variable, string $value, bool $quoteValue=false) : string
93
+    public function ifVarNotEquals(string $variable, string $value, bool $quoteValue = false) : string
94 94
     {
95
-        return $this->command2string(Mailcode_Factory::if()->varNotEquals($variable, $value, $quoteValue));
95
+        return $this->command2string(Mailcode_Factory::if ()->varNotEquals($variable, $value, $quoteValue));
96 96
     }
97 97
 
98 98
     public function ifVarNotEqualsString(string $variable, string $value) : string
99 99
     {
100
-        return $this->command2string(Mailcode_Factory::if()->varNotEqualsString($variable, $value));
100
+        return $this->command2string(Mailcode_Factory::if ()->varNotEqualsString($variable, $value));
101 101
     }
102 102
     
103
-    public function elseIf(string $condition, string $type='') : string
103
+    public function elseIf (string $condition, string $type = '') : string
104 104
     {
105
-        return $this->command2string(Mailcode_Factory::elseIf()->elseIf($condition, $type));
105
+        return $this->command2string(Mailcode_Factory::elseIf ()->elseIf($condition, $type));
106 106
     }
107 107
     
108
-    public function elseIfVar(string $variable, string $operand, string $value, bool $quoteValue=false) : string
108
+    public function elseIfVar(string $variable, string $operand, string $value, bool $quoteValue = false) : string
109 109
     {
110
-        return $this->command2string(Mailcode_Factory::elseIf()->var($variable, $operand, $value, $quoteValue));
110
+        return $this->command2string(Mailcode_Factory::elseIf ()->var($variable, $operand, $value, $quoteValue));
111 111
     }
112 112
 
113 113
     public function elseIfVarString(string $variable, string $operand, string $value) : string
114 114
     {
115
-        return $this->command2string(Mailcode_Factory::elseIf()->varString($variable, $operand, $value));
115
+        return $this->command2string(Mailcode_Factory::elseIf ()->varString($variable, $operand, $value));
116 116
     }
117 117
     
118
-    public function elseIfVarEquals(string $variable, string $value, bool $quoteValue=false) : string
118
+    public function elseIfVarEquals(string $variable, string $value, bool $quoteValue = false) : string
119 119
     {
120
-        return $this->command2string(Mailcode_Factory::elseIf()->varEquals($variable, $value, $quoteValue));
120
+        return $this->command2string(Mailcode_Factory::elseIf ()->varEquals($variable, $value, $quoteValue));
121 121
     }
122 122
 
123 123
     public function elseIfVarEqualsString(string $variable, string $value) : string
124 124
     {
125
-        return $this->command2string(Mailcode_Factory::elseIf()->varEqualsString($variable, $value));
125
+        return $this->command2string(Mailcode_Factory::elseIf ()->varEqualsString($variable, $value));
126 126
     }
127 127
     
128
-    public function elseIfVarNotEquals(string $variable, string $value, bool $quoteValue=false) : string
128
+    public function elseIfVarNotEquals(string $variable, string $value, bool $quoteValue = false) : string
129 129
     {
130
-        return $this->command2string(Mailcode_Factory::elseIf()->varNotEquals($variable, $value, $quoteValue));
130
+        return $this->command2string(Mailcode_Factory::elseIf ()->varNotEquals($variable, $value, $quoteValue));
131 131
     }
132 132
 
133 133
     public function elseIfVarNotEqualsString(string $variable, string $value) : string
134 134
     {
135
-        return $this->command2string(Mailcode_Factory::elseIf()->varNotEqualsString($variable, $value));
135
+        return $this->command2string(Mailcode_Factory::elseIf ()->varNotEqualsString($variable, $value));
136 136
     }
137 137
     
138 138
     public function else() : string
139 139
     {
140
-        return $this->command2string(Mailcode_Factory::elseIf()->else());
140
+        return $this->command2string(Mailcode_Factory::elseIf ()->else());
141 141
     }
142 142
     
143 143
     public function end() : string
@@ -152,7 +152,7 @@  discard block
 block discarded – undo
152 152
     
153 153
     protected function command2string(Mailcode_Commands_Command $command) : string
154 154
     {
155
-        if($this->highlighted)
155
+        if ($this->highlighted)
156 156
         {
157 157
             return $command->getHighlighted();
158 158
         }
Please login to merge, or discard this patch.
Braces   +45 added lines, -15 removed lines patch added patch discarded remove patch
@@ -67,78 +67,108 @@
 block discarded – undo
67 67
     
68 68
     public function if(string $condition, string $type='') : string
69 69
     {
70
-        return $this->command2string(Mailcode_Factory::if()->if($condition, $type));
70
+        return $this->command2string(Mailcode_Factory::if() {
71
+            ->if($condition, $type));
72
+        }
71 73
     }
72 74
     
73 75
     public function ifVar(string $variable, string $operand, string $value, bool $quoteValue=false) : string
74 76
     {
75
-        return $this->command2string(Mailcode_Factory::if()->var($variable, $operand, $value, $quoteValue));
77
+        return $this->command2string(Mailcode_Factory::if() {
78
+            ->var($variable, $operand, $value, $quoteValue));
79
+        }
76 80
     }
77 81
 
78 82
     public function ifVarString(string $variable, string $operand, string $value) : string
79 83
     {
80
-        return $this->command2string(Mailcode_Factory::if()->varString($variable, $operand, $value));
84
+        return $this->command2string(Mailcode_Factory::if() {
85
+            ->varString($variable, $operand, $value));
86
+        }
81 87
     }
82 88
     
83 89
     public function ifVarEquals(string $variable, string $value, bool $quoteValue=false) : string
84 90
     {
85
-        return $this->command2string(Mailcode_Factory::if()->varEquals($variable, $value, $quoteValue));
91
+        return $this->command2string(Mailcode_Factory::if() {
92
+            ->varEquals($variable, $value, $quoteValue));
93
+        }
86 94
     }
87 95
 
88 96
     public function ifVarEqualsString(string $variable, string $value) : string
89 97
     {
90
-        return $this->command2string(Mailcode_Factory::if()->varEqualsString($variable, $value));
98
+        return $this->command2string(Mailcode_Factory::if() {
99
+            ->varEqualsString($variable, $value));
100
+        }
91 101
     }
92 102
     
93 103
     public function ifVarNotEquals(string $variable, string $value, bool $quoteValue=false) : string
94 104
     {
95
-        return $this->command2string(Mailcode_Factory::if()->varNotEquals($variable, $value, $quoteValue));
105
+        return $this->command2string(Mailcode_Factory::if() {
106
+            ->varNotEquals($variable, $value, $quoteValue));
107
+        }
96 108
     }
97 109
 
98 110
     public function ifVarNotEqualsString(string $variable, string $value) : string
99 111
     {
100
-        return $this->command2string(Mailcode_Factory::if()->varNotEqualsString($variable, $value));
112
+        return $this->command2string(Mailcode_Factory::if() {
113
+            ->varNotEqualsString($variable, $value));
114
+        }
101 115
     }
102 116
     
103 117
     public function elseIf(string $condition, string $type='') : string
104 118
     {
105
-        return $this->command2string(Mailcode_Factory::elseIf()->elseIf($condition, $type));
119
+        return $this->command2string(Mailcode_Factory::elseIf() {
120
+            ->elseIf($condition, $type));
121
+        }
106 122
     }
107 123
     
108 124
     public function elseIfVar(string $variable, string $operand, string $value, bool $quoteValue=false) : string
109 125
     {
110
-        return $this->command2string(Mailcode_Factory::elseIf()->var($variable, $operand, $value, $quoteValue));
126
+        return $this->command2string(Mailcode_Factory::elseIf() {
127
+            ->var($variable, $operand, $value, $quoteValue));
128
+        }
111 129
     }
112 130
 
113 131
     public function elseIfVarString(string $variable, string $operand, string $value) : string
114 132
     {
115
-        return $this->command2string(Mailcode_Factory::elseIf()->varString($variable, $operand, $value));
133
+        return $this->command2string(Mailcode_Factory::elseIf() {
134
+            ->varString($variable, $operand, $value));
135
+        }
116 136
     }
117 137
     
118 138
     public function elseIfVarEquals(string $variable, string $value, bool $quoteValue=false) : string
119 139
     {
120
-        return $this->command2string(Mailcode_Factory::elseIf()->varEquals($variable, $value, $quoteValue));
140
+        return $this->command2string(Mailcode_Factory::elseIf() {
141
+            ->varEquals($variable, $value, $quoteValue));
142
+        }
121 143
     }
122 144
 
123 145
     public function elseIfVarEqualsString(string $variable, string $value) : string
124 146
     {
125
-        return $this->command2string(Mailcode_Factory::elseIf()->varEqualsString($variable, $value));
147
+        return $this->command2string(Mailcode_Factory::elseIf() {
148
+            ->varEqualsString($variable, $value));
149
+        }
126 150
     }
127 151
     
128 152
     public function elseIfVarNotEquals(string $variable, string $value, bool $quoteValue=false) : string
129 153
     {
130
-        return $this->command2string(Mailcode_Factory::elseIf()->varNotEquals($variable, $value, $quoteValue));
154
+        return $this->command2string(Mailcode_Factory::elseIf() {
155
+            ->varNotEquals($variable, $value, $quoteValue));
156
+        }
131 157
     }
132 158
 
133 159
     public function elseIfVarNotEqualsString(string $variable, string $value) : string
134 160
     {
135
-        return $this->command2string(Mailcode_Factory::elseIf()->varNotEqualsString($variable, $value));
161
+        return $this->command2string(Mailcode_Factory::elseIf() {
162
+            ->varNotEqualsString($variable, $value));
163
+        }
136 164
     }
137 165
     
138
-    public function else() : string
166
+    public function else {
167
+        () : string
139 168
     {
140 169
         return $this->command2string(Mailcode_Factory::elseIf()->else());
141 170
     }
171
+    }
142 172
     
143 173
     public function end() : string
144 174
     {
Please login to merge, or discard this patch.
Indentation   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -21,17 +21,17 @@  discard block
 block discarded – undo
21 21
  */
22 22
 class Mailcode_Renderer
23 23
 {
24
-   /**
25
-    * @var boolean
26
-    */
24
+    /**
25
+     * @var boolean
26
+     */
27 27
     protected bool $highlighted = false;
28 28
     
29
-   /**
30
-    * Sets whether to output highlighted commands instead of the default plain text.
31
-    * 
32
-    * @param bool $highlighted
33
-    * @return Mailcode_Renderer
34
-    */
29
+    /**
30
+     * Sets whether to output highlighted commands instead of the default plain text.
31
+     * 
32
+     * @param bool $highlighted
33
+     * @return Mailcode_Renderer
34
+     */
35 35
     public function setOutputHighlighted(bool $highlighted=true) : Mailcode_Renderer
36 36
     {
37 37
         $this->highlighted = $highlighted;
@@ -39,12 +39,12 @@  discard block
 block discarded – undo
39 39
         return $this;
40 40
     }
41 41
     
42
-   /**
43
-    * Converts a show variable command to string.
44
-    * 
45
-    * @param string $variableName The variable name, with or without $ sign.
46
-    * @return string
47
-    */
42
+    /**
43
+     * Converts a show variable command to string.
44
+     * 
45
+     * @param string $variableName The variable name, with or without $ sign.
46
+     * @return string
47
+     */
48 48
     public function showVar(string $variableName) : string
49 49
     {
50 50
         return $this->command2string(Mailcode_Factory::show()->var($variableName));
Please login to merge, or discard this patch.
src/Mailcode/Variables.php 3 patches
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -51,8 +51,7 @@
 block discarded – undo
51 51
             if(!empty($matches[3][$idx]))
52 52
             {
53 53
                 $this->addSingle($matches[3][$idx], $matchedText, $sourceCommand);
54
-            }
55
-            else 
54
+            } else 
56 55
             {
57 56
                 $this->addPathed($matches[1][$idx], $matches[2][$idx], $matchedText, $sourceCommand);
58 57
             }
Please login to merge, or discard this 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 REGEX_VARIABLE_NAME = '/\$\s*([A-Z0-9_]+)\s*\.\s*([A-Z0-9_]+)|\$\s*([A-Z0-9_]+)/six';
24 24
     
25
-   /**
26
-    * @var Mailcode_Variables_Collection_Regular
27
-    */
25
+    /**
26
+     * @var Mailcode_Variables_Collection_Regular
27
+     */
28 28
     protected Mailcode_Variables_Collection_Regular $collection;
29 29
 
30 30
     /**
Please login to merge, or discard this patch.
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -34,21 +34,21 @@  discard block
 block discarded – undo
34 34
      * @param Mailcode_Commands_Command|null $sourceCommand
35 35
      * @return Mailcode_Variables_Collection_Regular
36 36
      */
37
-    public function parseString(string $subject, ?Mailcode_Commands_Command $sourceCommand=null) : Mailcode_Variables_Collection_Regular
37
+    public function parseString(string $subject, ?Mailcode_Commands_Command $sourceCommand = null) : Mailcode_Variables_Collection_Regular
38 38
     {
39 39
         $this->collection = new Mailcode_Variables_Collection_Regular();
40 40
         
41 41
         $matches = array();
42 42
         preg_match_all(self::REGEX_VARIABLE_NAME, $subject, $matches, PREG_PATTERN_ORDER);
43 43
         
44
-        if(empty($matches[0]))
44
+        if (empty($matches[0]))
45 45
         {
46 46
             return $this->collection;
47 47
         }
48 48
         
49
-        foreach($matches[0] as $idx => $matchedText)
49
+        foreach ($matches[0] as $idx => $matchedText)
50 50
         {
51
-            if(!empty($matches[3][$idx]))
51
+            if (!empty($matches[3][$idx]))
52 52
             {
53 53
                 $this->addSingle($matches[3][$idx], $matchedText, $sourceCommand);
54 54
             }
@@ -61,10 +61,10 @@  discard block
 block discarded – undo
61 61
         return $this->collection;
62 62
     }
63 63
     
64
-    protected function addSingle(string $name, string $matchedText, ?Mailcode_Commands_Command $sourceCommand=null) : void
64
+    protected function addSingle(string $name, string $matchedText, ?Mailcode_Commands_Command $sourceCommand = null) : void
65 65
     {
66 66
         // ignore US style numbers like $451
67
-        if(is_numeric($name))
67
+        if (is_numeric($name))
68 68
         {
69 69
             return;
70 70
         }
@@ -72,10 +72,10 @@  discard block
 block discarded – undo
72 72
         $this->collection->add(new Mailcode_Variables_Variable('', $name, $matchedText, $sourceCommand));
73 73
     }
74 74
     
75
-    protected function addPathed(string $path, string $name, string $matchedText, ?Mailcode_Commands_Command $sourceCommand=null) : void
75
+    protected function addPathed(string $path, string $name, string $matchedText, ?Mailcode_Commands_Command $sourceCommand = null) : void
76 76
     {
77 77
         // ignore US style numbers like $45.12
78
-        if(is_numeric($path.'.'.$name))
78
+        if (is_numeric($path.'.'.$name))
79 79
         {
80 80
             return;
81 81
         }
@@ -93,9 +93,9 @@  discard block
 block discarded – undo
93 93
         return ltrim($name, '$');
94 94
     }
95 95
 
96
-    public function createVariable(string $path, ?string $name='') : Mailcode_Variables_Variable
96
+    public function createVariable(string $path, ?string $name = '') : Mailcode_Variables_Variable
97 97
     {
98
-        if(empty($name)) {
98
+        if (empty($name)) {
99 99
             $fullName = dollarize($path);
100 100
             $name = $path;
101 101
             $path = '';
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
     {
111 111
         $parts = explode('.', undollarize($name));
112 112
 
113
-        if(count($parts) === 1) {
113
+        if (count($parts) === 1) {
114 114
             return $this->createVariable($parts[0]);
115 115
         }
116 116
 
Please login to merge, or discard this patch.
src/Mailcode/Traits/Commands/Validation/CaseSensitive.php 2 patches
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -26,14 +26,14 @@
 block discarded – undo
26 26
  */
27 27
 trait Mailcode_Traits_Commands_Validation_CaseSensitive
28 28
 {
29
-   /**
30
-    * @var boolean
31
-    */
29
+    /**
30
+     * @var boolean
31
+     */
32 32
     protected $caseInsensitive = false;
33 33
 
34
-   /**
35
-    * @var Mailcode_Parser_Statement_Tokenizer_Token_Keyword|NULL
36
-    */
34
+    /**
35
+     * @var Mailcode_Parser_Statement_Tokenizer_Token_Keyword|NULL
36
+     */
37 37
     protected $regexToken;
38 38
     
39 39
     protected function validateSyntax_case_sensitive() : void
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
         
43 43
         $this->caseInsensitive = $val->isValid();
44 44
         
45
-        if($val->isValid())
45
+        if ($val->isValid())
46 46
         {
47 47
             $this->regexToken = $val->getToken();
48 48
         }
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
     
56 56
     public function getCaseToken() : ?Mailcode_Parser_Statement_Tokenizer_Token_Keyword
57 57
     {
58
-        if($this->regexToken instanceof Mailcode_Parser_Statement_Tokenizer_Token_Keyword)
58
+        if ($this->regexToken instanceof Mailcode_Parser_Statement_Tokenizer_Token_Keyword)
59 59
         {
60 60
             return $this->regexToken;
61 61
         }
Please login to merge, or discard this patch.
src/Mailcode/Traits/Commands/Validation/RegexEnabled.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
 
43 43
         $this->regexEnabled = $val->isValid();
44 44
 
45
-        if($val->isValid())
45
+        if ($val->isValid())
46 46
         {
47 47
             $this->regexToken = $val->getToken();
48 48
         }
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
 
56 56
     public function getRegexToken() : ?Mailcode_Parser_Statement_Tokenizer_Token_Keyword
57 57
     {
58
-        if($this->regexToken instanceof Mailcode_Parser_Statement_Tokenizer_Token_Keyword)
58
+        if ($this->regexToken instanceof Mailcode_Parser_Statement_Tokenizer_Token_Keyword)
59 59
         {
60 60
             return $this->regexToken;
61 61
         }
Please login to merge, or discard this patch.
src/Mailcode/Parser/Statement/Validator.php 2 patches
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,24 +38,24 @@  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
         return new Mailcode_Parser_Statement_Validator_Type_Variable($this->statement);
50 50
     }
51 51
     
52
-   /**
53
-    * Creates a keyword validator: checks whether a single
54
-    * keyword token is present in the parameters.
55
-    * 
56
-    * @param string $keywordName
57
-    * @return Mailcode_Parser_Statement_Validator_Type_Keyword
58
-    */
52
+    /**
53
+     * Creates a keyword validator: checks whether a single
54
+     * keyword token is present in the parameters.
55
+     * 
56
+     * @param string $keywordName
57
+     * @return Mailcode_Parser_Statement_Validator_Type_Keyword
58
+     */
59 59
     public function createKeyword(string $keywordName) : Mailcode_Parser_Statement_Validator_Type_Keyword
60 60
     {
61 61
         return new Mailcode_Parser_Statement_Validator_Type_Keyword(
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -74,11 +74,11 @@
 block discarded – undo
74 74
         return new Mailcode_Parser_Statement_Validator_Type_Value($this->statement);
75 75
     }
76 76
     
77
-    public function createOperand(string $sign='') : Mailcode_Parser_Statement_Validator_Type_Operand
77
+    public function createOperand(string $sign = '') : Mailcode_Parser_Statement_Validator_Type_Operand
78 78
     {
79 79
         $validate = new Mailcode_Parser_Statement_Validator_Type_Operand($this->statement);
80 80
         
81
-        if(!empty($sign))
81
+        if (!empty($sign))
82 82
         {
83 83
             $validate->setOperandSign($sign);
84 84
         }
Please login to merge, or discard this patch.