Passed
Push — develop ( acf7d3...ede307 )
by nguereza
10:23
created
src/Loader/FileLoader.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -97,8 +97,8 @@
 block discarded – undo
97 97
     }
98 98
 
99 99
     /**
100
-    * {@inheritdoc}
101
-    */
100
+     * {@inheritdoc}
101
+     */
102 102
     public function read(string $name): string
103 103
     {
104 104
         $file = $this->getFilePath($name);
Please login to merge, or discard this patch.
src/Parser/Document.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -114,8 +114,8 @@  discard block
 block discarded – undo
114 114
     }
115 115
 
116 116
     /**
117
-    * {@inheritdoc}
118
-    */
117
+     * {@inheritdoc}
118
+     */
119 119
     protected function blockDelimiter(): string
120 120
     {
121 121
         //There isn't a real delimiter
@@ -123,8 +123,8 @@  discard block
 block discarded – undo
123 123
     }
124 124
 
125 125
     /**
126
-    * {@inheritdoc}
127
-    */
126
+     * {@inheritdoc}
127
+     */
128 128
     protected function assertMissingDelimiter(): void
129 129
     {
130 130
         // Document blocks don't need to be
Please login to merge, or discard this patch.
src/Parser/Parser.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -118,11 +118,11 @@
 block discarded – undo
118 118
     }
119 119
 
120 120
     /**
121
-    * Parse the template source and use the cached
122
-    * content if is available
123
-    * @param string $name
124
-    * @return $this
125
-    */
121
+     * Parse the template source and use the cached
122
+     * content if is available
123
+     * @param string $name
124
+     * @return $this
125
+     */
126 126
     public function parse(string $name): self
127 127
     {
128 128
         $hash = md5($name);
Please login to merge, or discard this patch.
src/Parser/Token.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -113,8 +113,8 @@  discard block
 block discarded – undo
113 113
      * Quoted fragment pattern
114 114
      */
115 115
     public const QUOTED_FRAGMENT = '(?:' . self::QUOTED_STRING
116
-                                   . '|(?:[^\s,\|\'"]|'
117
-                                   . self::QUOTED_STRING . ')+)';
116
+                                    . '|(?:[^\s,\|\'"]|'
117
+                                    . self::QUOTED_STRING . ')+)';
118 118
 
119 119
     /**
120 120
      * Tag attributes pattern expression
@@ -125,8 +125,8 @@  discard block
 block discarded – undo
125 125
      * Template parse pattern
126 126
      */
127 127
     public const TOKENIZATION_REGEXP = '/(' . self::BLOCK_OPEN
128
-                                       . '.*?' . self::BLOCK_CLOSE
129
-                                       . '|' . self::VARIABLE_OPEN
130
-                                       . '.*?' . self::VARIABLE_CLOSE
131
-                                       . ')/';
128
+                                        . '.*?' . self::BLOCK_CLOSE
129
+                                        . '|' . self::VARIABLE_OPEN
130
+                                        . '.*?' . self::VARIABLE_CLOSE
131
+                                        . ')/';
132 132
 }
Please login to merge, or discard this patch.
src/Parser/AbstractTag.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -147,10 +147,10 @@
 block discarded – undo
147 147
     }
148 148
 
149 149
     /**
150
-    * Returns the class name of the tag.
151
-    *
152
-    * @return string
153
-    */
150
+     * Returns the class name of the tag.
151
+     *
152
+     * @return string
153
+     */
154 154
     protected function getName(): string
155 155
     {
156 156
         return strtolower(get_class($this));
Please login to merge, or discard this patch.
src/Parser/Variable.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -95,13 +95,13 @@
 block discarded – undo
95 95
                                 . Token::FILTER_SEPARATOR
96 96
                                 . '\s*(.*)/m';
97 97
         $syntaxRegex = '/('
98
-                       . Token::QUOTED_FRAGMENT
99
-                       . ')(.*)/m';
98
+                        . Token::QUOTED_FRAGMENT
99
+                        . ')(.*)/m';
100 100
         $filterRegex = '/(?:\s+|'
101
-                       . Token::QUOTED_FRAGMENT
102
-                       . '|'
103
-                       . Token::FILTER_METHOD_ARGS_SEPARATOR
104
-                       . ')+/';
101
+                        . Token::QUOTED_FRAGMENT
102
+                        . '|'
103
+                        . Token::FILTER_METHOD_ARGS_SEPARATOR
104
+                        . ')+/';
105 105
         $filterArgumentsRegex = '/(?:'
106 106
                                 . Token::FILTER_NAME_ARG_SEPARATOR
107 107
                                 . '|'
Please login to merge, or discard this patch.
src/Parser/AbstractBlock.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
 
84 84
     /**
85 85
      * {@inheritdoc}
86
-    */
86
+     */
87 87
     public function parse(array &$tokens): void
88 88
     {
89 89
         $startRegex = '/^' . Token::BLOCK_OPEN . '/';
@@ -179,7 +179,7 @@  discard block
 block discarded – undo
179 179
 
180 180
     /**
181 181
      * {@inheritdoc}
182
-    */
182
+     */
183 183
     public function render(Context $context): string
184 184
     {
185 185
         return $this->renderAll($this->nodeList, $context);
Please login to merge, or discard this patch.
src/Parser/Lexer.php 1 patch
Indentation   +19 added lines, -19 removed lines patch added patch discarded remove patch
@@ -68,9 +68,9 @@  discard block
 block discarded – undo
68 68
     protected array $matches = [];
69 69
 
70 70
     /**
71
-    * Create new instance
72
-    * @param string $pattern
73
-    */
71
+     * Create new instance
72
+     * @param string $pattern
73
+     */
74 74
     public function __construct(string $pattern)
75 75
     {
76 76
         $this->pattern = (substr($pattern, 0, 1) !== '/')
@@ -79,10 +79,10 @@  discard block
 block discarded – undo
79 79
     }
80 80
 
81 81
     /**
82
-    * Return the array of matches for the given value
83
-    * @param string $value
84
-    * @return array<int|string, array<int|string, mixed>>
85
-    */
82
+     * Return the array of matches for the given value
83
+     * @param string $value
84
+     * @return array<int|string, array<int|string, mixed>>
85
+     */
86 86
     public function scan(string $value): array
87 87
     {
88 88
         $matches = [];
@@ -104,20 +104,20 @@  discard block
 block discarded – undo
104 104
     }
105 105
 
106 106
     /**
107
-    * Whether the given value match regex
108
-    * @param string $value
109
-    * @return bool
110
-    */
107
+     * Whether the given value match regex
108
+     * @param string $value
109
+     * @return bool
110
+     */
111 111
     public function match(string $value): bool
112 112
     {
113 113
         return (bool) preg_match($this->pattern, $value, $this->matches);
114 114
     }
115 115
 
116 116
     /**
117
-    * Whether the given value match all regex
118
-    * @param string $value
119
-    * @return bool
120
-    */
117
+     * Whether the given value match all regex
118
+     * @param string $value
119
+     * @return bool
120
+     */
121 121
     public function matchAll(string $value): bool
122 122
     {
123 123
         return (bool) preg_match_all($this->pattern, $value, $this->matches);
@@ -202,10 +202,10 @@  discard block
 block discarded – undo
202 202
     }
203 203
 
204 204
     /**
205
-    * Quote the given value in order to use in regex expression
206
-    * @param string $value
207
-    * @return string
208
-    */
205
+     * Quote the given value in order to use in regex expression
206
+     * @param string $value
207
+     * @return string
208
+     */
209 209
     protected function quote(string $value): string
210 210
     {
211 211
         return preg_quote($value, '/');
Please login to merge, or discard this patch.
src/Tag/ContinueTag.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -59,8 +59,8 @@
 block discarded – undo
59 59
 class ContinueTag extends AbstractTag
60 60
 {
61 61
     /**
62
-    * {@inheritdoc}
63
-    */
62
+     * {@inheritdoc}
63
+     */
64 64
     public function render(Context $context): string
65 65
     {
66 66
         $context->setRegister('continue', true);
Please login to merge, or discard this patch.