Passed
Push — develop ( f442cf...78f78a )
by nguereza
02:29
created
src/Cache/MemoryCache.php 2 patches
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -62,8 +62,8 @@  discard block
 block discarded – undo
62 62
     protected array $data = [];
63 63
 
64 64
     /**
65
-    * {@inheritdoc}
66
-    */
65
+     * {@inheritdoc}
66
+     */
67 67
     public function read(string $key, bool $unserialize = false)
68 68
     {
69 69
         if (!$this->exists($key)) {
@@ -74,16 +74,16 @@  discard block
 block discarded – undo
74 74
     }
75 75
 
76 76
     /**
77
-    * {@inheritdoc}
78
-    */
77
+     * {@inheritdoc}
78
+     */
79 79
     public function exists(string $key): bool
80 80
     {
81 81
         return isset($this->data[$key]);
82 82
     }
83 83
 
84 84
     /**
85
-    * {@inheritdoc}
86
-    */
85
+     * {@inheritdoc}
86
+     */
87 87
     public function write(string $key, $value, bool $serialize = false): bool
88 88
     {
89 89
         $this->data[$key] = $value;
@@ -93,8 +93,8 @@  discard block
 block discarded – undo
93 93
 
94 94
 
95 95
     /**
96
-    * {@inheritdoc}
97
-    */
96
+     * {@inheritdoc}
97
+     */
98 98
     public function flush(bool $expired = false): bool
99 99
     {
100 100
         $this->data = [];
Please login to merge, or discard this patch.
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -53,8 +53,7 @@  discard block
 block discarded – undo
53 53
  * Class MemoryCache
54 54
  * @package Platine\Template\Cache
55 55
  */
56
-class MemoryCache extends AbstractCache
57
-{
56
+class MemoryCache extends AbstractCache {
58 57
     /**
59 58
      * The cache data
60 59
      * @var array<string, mixed>
@@ -64,8 +63,7 @@  discard block
 block discarded – undo
64 63
     /**
65 64
     * {@inheritdoc}
66 65
     */
67
-    public function read(string $key, bool $unserialize = false)
68
-    {
66
+    public function read(string $key, bool $unserialize = false) {
69 67
         if (!$this->exists($key)) {
70 68
             return false;
71 69
         }
Please login to merge, or discard this patch.
src/Filter/StringFilter.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -387,7 +387,7 @@
 block discarded – undo
387 387
 
388 388
         return (string) preg_replace_callback(
389 389
             '/(^|[^\p{L}\'])([\p{Ll}])/u',
390
-            function ($matches) {
390
+            function($matches) {
391 391
                 return $matches[1] . ucfirst($matches[2]);
392 392
             },
393 393
             ucwords($variable)
Please login to merge, or discard this patch.
Braces   +25 added lines, -50 removed lines patch added patch discarded remove patch
@@ -56,16 +56,14 @@  discard block
 block discarded – undo
56 56
  * Class StringFilter
57 57
  * @package Platine\Template\Filter
58 58
  */
59
-class StringFilter extends AbstractFilter
60
-{
59
+class StringFilter extends AbstractFilter {
61 60
 
62 61
     /**
63 62
      * Return the length of string or array
64 63
      * @param mixed $variable
65 64
      * @return int|mixed
66 65
      */
67
-    public static function length($variable)
68
-    {
66
+    public static function length($variable) {
69 67
         if ($variable instanceof Traversable) {
70 68
             return iterator_count($variable);
71 69
         }
@@ -97,8 +95,7 @@  discard block
 block discarded – undo
97 95
      * @param mixed $value
98 96
      * @return string|mixed
99 97
      */
100
-    public static function append($variable, $value)
101
-    {
98
+    public static function append($variable, $value) {
102 99
         if (!is_string($variable) || !is_string($value)) {
103 100
             return $variable;
104 101
         }
@@ -112,8 +109,7 @@  discard block
 block discarded – undo
112 109
      * @param mixed $value
113 110
      * @return string|mixed
114 111
      */
115
-    public static function prepend($variable, $value)
116
-    {
112
+    public static function prepend($variable, $value) {
117 113
         if (!is_string($variable) || !is_string($value)) {
118 114
             return $variable;
119 115
         }
@@ -127,8 +123,7 @@  discard block
 block discarded – undo
127 123
      * @param mixed $value
128 124
      * @return string|mixed
129 125
      */
130
-    public static function remove($variable, $value)
131
-    {
126
+    public static function remove($variable, $value) {
132 127
         if (!is_string($variable) || !is_string($value)) {
133 128
             return $variable;
134 129
         }
@@ -143,8 +138,7 @@  discard block
 block discarded – undo
143 138
      * @param mixed $replacement
144 139
      * @return string|mixed
145 140
      */
146
-    public static function replace($variable, $value, $replacement = '')
147
-    {
141
+    public static function replace($variable, $value, $replacement = '') {
148 142
         if (!is_string($variable) || !is_string($value) || !is_string($replacement)) {
149 143
             return $variable;
150 144
         }
@@ -159,8 +153,7 @@  discard block
 block discarded – undo
159 153
      * @param string|mixed $ending
160 154
      * @return string|mixed
161 155
      */
162
-    public static function truncate($variable, $count = 100, $ending = '...')
163
-    {
156
+    public static function truncate($variable, $count = 100, $ending = '...') {
164 157
         if (!is_string($variable) || !is_string($ending) || !is_numeric($count)) {
165 158
             return $variable;
166 159
         }
@@ -180,8 +173,7 @@  discard block
 block discarded – undo
180 173
      * @param string|mixed $ending
181 174
      * @return string|mixed
182 175
      */
183
-    public static function truncateWord($variable, $count = 3, $ending = '...')
184
-    {
176
+    public static function truncateWord($variable, $count = 3, $ending = '...') {
185 177
         if (!is_string($variable) || !is_string($ending) || !is_numeric($count)) {
186 178
             return $variable;
187 179
         }
@@ -200,8 +192,7 @@  discard block
 block discarded – undo
200 192
      * @param mixed $variable
201 193
      * @return string|mixed
202 194
      */
203
-    public static function upper($variable)
204
-    {
195
+    public static function upper($variable) {
205 196
         if (!is_string($variable)) {
206 197
             return $variable;
207 198
         }
@@ -218,8 +209,7 @@  discard block
 block discarded – undo
218 209
      * @param mixed $variable
219 210
      * @return string|mixed
220 211
      */
221
-    public static function urlEncode($variable)
222
-    {
212
+    public static function urlEncode($variable) {
223 213
         if (!is_string($variable)) {
224 214
             return $variable;
225 215
         }
@@ -232,8 +222,7 @@  discard block
 block discarded – undo
232 222
      * @param mixed $variable
233 223
      * @return string|mixed
234 224
      */
235
-    public static function urlDecode($variable)
236
-    {
225
+    public static function urlDecode($variable) {
237 226
         if (!is_string($variable)) {
238 227
             return $variable;
239 228
         }
@@ -246,8 +235,7 @@  discard block
 block discarded – undo
246 235
      * @param mixed $variable
247 236
      * @return string|mixed
248 237
      */
249
-    public static function stringfy($variable)
250
-    {
238
+    public static function stringfy($variable) {
251 239
         if (is_array($variable)) {
252 240
             return $variable;
253 241
         }
@@ -262,8 +250,7 @@  discard block
 block discarded – undo
262 250
      * @param mixed $pattern
263 251
      * @return array<mixed>|mixed
264 252
      */
265
-    public static function split($variable, $pattern)
266
-    {
253
+    public static function split($variable, $pattern) {
267 254
         if (!is_string($variable) || !is_string($pattern)) {
268 255
             return $variable;
269 256
         }
@@ -276,8 +263,7 @@  discard block
 block discarded – undo
276 263
      * @param mixed $variable
277 264
      * @return string|mixed
278 265
      */
279
-    public static function raw($variable)
280
-    {
266
+    public static function raw($variable) {
281 267
         return $variable;
282 268
     }
283 269
 
@@ -286,8 +272,7 @@  discard block
 block discarded – undo
286 272
      * @param mixed $variable
287 273
      * @return string|mixed
288 274
      */
289
-    public static function escape($variable)
290
-    {
275
+    public static function escape($variable) {
291 276
         if (!is_string($variable)) {
292 277
             return $variable;
293 278
         }
@@ -300,8 +285,7 @@  discard block
 block discarded – undo
300 285
      * @param mixed $variable
301 286
      * @return string|mixed
302 287
      */
303
-    public static function escapeOnce($variable)
304
-    {
288
+    public static function escapeOnce($variable) {
305 289
         if (!is_string($variable)) {
306 290
             return $variable;
307 291
         }
@@ -315,8 +299,7 @@  discard block
 block discarded – undo
315 299
      * @param mixed $value
316 300
      * @return mixed
317 301
      */
318
-    public static function defaultValue($variable, $value)
319
-    {
302
+    public static function defaultValue($variable, $value) {
320 303
         $isBlank = (is_string($variable) && $variable === '')
321 304
                     || is_bool($variable) && $variable === false
322 305
                     || $variable === null;
@@ -332,8 +315,7 @@  discard block
 block discarded – undo
332 315
      * @param mixed $glue
333 316
      * @return string|mixed
334 317
      */
335
-    public static function join($variable, $glue = ' ')
336
-    {
318
+    public static function join($variable, $glue = ' ') {
337 319
         if (!is_string($glue)) {
338 320
             return $variable;
339 321
         }
@@ -361,8 +343,7 @@  discard block
 block discarded – undo
361 343
      * @param mixed $variable
362 344
      * @return string|mixed
363 345
      */
364
-    public static function lower($variable)
365
-    {
346
+    public static function lower($variable) {
366 347
         if (!is_string($variable)) {
367 348
             return $variable;
368 349
         }
@@ -379,8 +360,7 @@  discard block
 block discarded – undo
379 360
      * @param mixed $variable
380 361
      * @return string|mixed
381 362
      */
382
-    public static function capitalize($variable)
383
-    {
363
+    public static function capitalize($variable) {
384 364
         if (!is_string($variable)) {
385 365
             return $variable;
386 366
         }
@@ -399,8 +379,7 @@  discard block
 block discarded – undo
399 379
      * @param mixed $variable
400 380
      * @return string|mixed
401 381
      */
402
-    public static function lstrip($variable)
403
-    {
382
+    public static function lstrip($variable) {
404 383
         if (!is_string($variable)) {
405 384
             return $variable;
406 385
         }
@@ -413,8 +392,7 @@  discard block
 block discarded – undo
413 392
      * @param mixed $variable
414 393
      * @return string|mixed
415 394
      */
416
-    public static function rstrip($variable)
417
-    {
395
+    public static function rstrip($variable) {
418 396
         if (!is_string($variable)) {
419 397
             return $variable;
420 398
         }
@@ -427,8 +405,7 @@  discard block
 block discarded – undo
427 405
      * @param mixed $variable
428 406
      * @return string|mixed
429 407
      */
430
-    public static function strip($variable)
431
-    {
408
+    public static function strip($variable) {
432 409
         if (!is_string($variable)) {
433 410
             return $variable;
434 411
         }
@@ -441,8 +418,7 @@  discard block
 block discarded – undo
441 418
      * @param mixed $variable
442 419
      * @return string|mixed
443 420
      */
444
-    public static function stripHtml($variable)
445
-    {
421
+    public static function stripHtml($variable) {
446 422
         if (!is_string($variable)) {
447 423
             return $variable;
448 424
         }
@@ -455,8 +431,7 @@  discard block
 block discarded – undo
455 431
      * @param mixed $variable
456 432
      * @return string|mixed
457 433
      */
458
-    public static function stripNewLine($variable)
459
-    {
434
+    public static function stripNewLine($variable) {
460 435
         if (!is_string($variable)) {
461 436
             return $variable;
462 437
         }
Please login to merge, or discard this patch.
src/Filter/HtmlFilter.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -55,16 +55,14 @@
 block discarded – undo
55 55
  * Class HtmlFilter
56 56
  * @package Platine\Template\Filter
57 57
  */
58
-class HtmlFilter extends AbstractFilter
59
-{
58
+class HtmlFilter extends AbstractFilter {
60 59
 
61 60
     /**
62 61
      * Put all letter to lower case
63 62
      * @param mixed $variable
64 63
      * @return string|mixed
65 64
      */
66
-    public static function nl2br($variable)
67
-    {
65
+    public static function nl2br($variable) {
68 66
         if (!is_string($variable)) {
69 67
             return $variable;
70 68
         }
Please login to merge, or discard this patch.
src/Filter/ArrayFilter.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
         } else {
121 121
             $first = reset($variable);
122 122
             if ($first !== false && is_array($first) && array_key_exists($property, $first)) {
123
-                uasort($variable, function ($a, $b) use ($property) {
123
+                uasort($variable, function($a, $b) use ($property) {
124 124
                     return $a[$property] <=> $b[$property];
125 125
                 });
126 126
             }
@@ -174,7 +174,7 @@  discard block
 block discarded – undo
174 174
             return $variable;
175 175
         }
176 176
 
177
-        return array_map(function ($element) use ($property) {
177
+        return array_map(function($element) use ($property) {
178 178
             if (is_callable($element)) {
179 179
                 return $element();
180 180
             } elseif (is_array($element) && array_key_exists($property, $element)) {
Please login to merge, or discard this patch.
Braces   +8 added lines, -16 removed lines patch added patch discarded remove patch
@@ -57,16 +57,14 @@  discard block
 block discarded – undo
57 57
  * Class ArrayFilter
58 58
  * @package Platine\Template\Filter
59 59
  */
60
-class ArrayFilter extends AbstractFilter
61
-{
60
+class ArrayFilter extends AbstractFilter {
62 61
 
63 62
     /**
64 63
      * Returns the first element of an array
65 64
      * @param array<mixed>|Iterator<mixed>|mixed $value
66 65
      * @return mixed
67 66
      */
68
-    public static function first($value)
69
-    {
67
+    public static function first($value) {
70 68
         if (is_array($value)) {
71 69
             return reset($value);
72 70
         }
@@ -85,8 +83,7 @@  discard block
 block discarded – undo
85 83
      * @param array<mixed>|Traversable<mixed>|mixed $value
86 84
      * @return mixed
87 85
      */
88
-    public static function last($value)
89
-    {
86
+    public static function last($value) {
90 87
         if (is_array($value)) {
91 88
             return end($value);
92 89
         }
@@ -109,8 +106,7 @@  discard block
 block discarded – undo
109 106
      * @param mixed $property
110 107
      * @return mixed
111 108
      */
112
-    public static function sort($variable, $property = null)
113
-    {
109
+    public static function sort($variable, $property = null) {
114 110
         if ($variable instanceof Traversable) {
115 111
             $variable = iterator_to_array($variable);
116 112
         }
@@ -134,8 +130,7 @@  discard block
 block discarded – undo
134 130
      * @param array<int|string, mixed>|mixed $variable
135 131
      * @return mixed
136 132
      */
137
-    public static function sortKey($variable)
138
-    {
133
+    public static function sortKey($variable) {
139 134
         if (is_array($variable)) {
140 135
             ksort($variable);
141 136
             return $variable;
@@ -149,8 +144,7 @@  discard block
 block discarded – undo
149 144
      * @param array<int|string, mixed>|mixed $variable
150 145
      * @return mixed
151 146
      */
152
-    public static function unique($variable)
153
-    {
147
+    public static function unique($variable) {
154 148
         if ($variable instanceof Traversable) {
155 149
             $variable = iterator_to_array($variable);
156 150
         }
@@ -164,8 +158,7 @@  discard block
 block discarded – undo
164 158
      * @param mixed $property
165 159
      * @return string|mixed
166 160
      */
167
-    public static function map($variable, $property)
168
-    {
161
+    public static function map($variable, $property) {
169 162
         if ($variable instanceof Traversable) {
170 163
             $variable = iterator_to_array($variable);
171 164
         }
@@ -191,8 +184,7 @@  discard block
 block discarded – undo
191 184
      * @param array<mixed>|Traversable|mixed $variable
192 185
      * @return string|mixed
193 186
      */
194
-    public static function reverse($variable)
195
-    {
187
+    public static function reverse($variable) {
196 188
         if ($variable instanceof Traversable) {
197 189
             $variable = iterator_to_array($variable);
198 190
         }
Please login to merge, or discard this patch.
src/Tag/CaptureTag.php 2 patches
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -68,8 +68,8 @@  discard block
 block discarded – undo
68 68
     protected string $variableName;
69 69
 
70 70
     /**
71
-    * {@inheritdoc}
72
-    */
71
+     * {@inheritdoc}
72
+     */
73 73
     public function __construct(string $markup, &$tokens, Parser $parser)
74 74
     {
75 75
         $lexer = new Lexer('/(\w+)/');
@@ -85,8 +85,8 @@  discard block
 block discarded – undo
85 85
     }
86 86
 
87 87
     /**
88
-    * {@inheritdoc}
89
-    */
88
+     * {@inheritdoc}
89
+     */
90 90
     public function render(Context $context): string
91 91
     {
92 92
         $output = parent::render($context);
Please login to merge, or discard this patch.
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -59,8 +59,7 @@  discard block
 block discarded – undo
59 59
  * Class CaptureTag
60 60
  * @package Platine\Template\Tag
61 61
  */
62
-class CaptureTag extends AbstractBlock
63
-{
62
+class CaptureTag extends AbstractBlock {
64 63
     /**
65 64
      * The name of the variable
66 65
      * @var string
@@ -70,8 +69,7 @@  discard block
 block discarded – undo
70 69
     /**
71 70
     * {@inheritdoc}
72 71
     */
73
-    public function __construct(string $markup, &$tokens, Parser $parser)
74
-    {
72
+    public function __construct(string $markup, &$tokens, Parser $parser) {
75 73
         $lexer = new Lexer('/(\w+)/');
76 74
         if ($lexer->match($markup)) {
77 75
             $this->variableName = $lexer->getStringMatch(1);
Please login to merge, or discard this patch.
src/Tag/CycleTag.php 2 patches
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -77,8 +77,8 @@  discard block
 block discarded – undo
77 77
     protected array $variables = [];
78 78
 
79 79
     /**
80
-    * {@inheritdoc}
81
-    */
80
+     * {@inheritdoc}
81
+     */
82 82
     public function __construct(string $markup, &$tokens, Parser $parser)
83 83
     {
84 84
         $lexerSimple = new Lexer('/' . Token::QUOTED_FRAGMENT . '/');
@@ -98,8 +98,8 @@  discard block
 block discarded – undo
98 98
     }
99 99
 
100 100
     /**
101
-    * {@inheritdoc}
102
-    */
101
+     * {@inheritdoc}
102
+     */
103 103
     public function render(Context $context): string
104 104
     {
105 105
         $context->push();
Please login to merge, or discard this patch.
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -60,8 +60,7 @@  discard block
 block discarded – undo
60 60
  * Class CycleTag
61 61
  * @package Platine\Template\Tag
62 62
  */
63
-class CycleTag extends AbstractTag
64
-{
63
+class CycleTag extends AbstractTag {
65 64
     /**
66 65
      * The name of the cycle; if none is given one
67 66
      * is created using the value list
@@ -78,8 +77,7 @@  discard block
 block discarded – undo
78 77
     /**
79 78
     * {@inheritdoc}
80 79
     */
81
-    public function __construct(string $markup, &$tokens, Parser $parser)
82
-    {
80
+    public function __construct(string $markup, &$tokens, Parser $parser) {
83 81
         $lexerSimple = new Lexer('/' . Token::QUOTED_FRAGMENT . '/');
84 82
         $lexerNamed = new Lexer('/(' . Token::QUOTED_FRAGMENT . ')\s*\:\s*(.*)/');
85 83
         if ($lexerNamed->match($markup)) {
Please login to merge, or discard this patch.
src/Tag/ExtendsTag.php 2 patches
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -83,8 +83,8 @@  discard block
 block discarded – undo
83 83
     protected string $hash;
84 84
 
85 85
     /**
86
-    * {@inheritdoc}
87
-    */
86
+     * {@inheritdoc}
87
+     */
88 88
     public function __construct(string $markup, &$tokens, Parser $parser)
89 89
     {
90 90
         $lexer = new Lexer('/("[^"]+"|\'[^\']+\')?/');
@@ -105,8 +105,8 @@  discard block
 block discarded – undo
105 105
     }
106 106
 
107 107
     /**
108
-    * {@inheritdoc}
109
-    */
108
+     * {@inheritdoc}
109
+     */
110 110
     public function parse(&$tokens): void
111 111
     {
112 112
         $source = $this->parser->getLoader()->read($this->templateName);
@@ -187,8 +187,8 @@  discard block
 block discarded – undo
187 187
 
188 188
 
189 189
     /**
190
-    * {@inheritdoc}
191
-    */
190
+     * {@inheritdoc}
191
+     */
192 192
     public function render(Context $context): string
193 193
     {
194 194
         $context->push();
Please login to merge, or discard this patch.
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -61,8 +61,7 @@  discard block
 block discarded – undo
61 61
  * Class ExtendsTag
62 62
  * @package Platine\Template\Tag
63 63
  */
64
-class ExtendsTag extends AbstractTag
65
-{
64
+class ExtendsTag extends AbstractTag {
66 65
     /**
67 66
      * The name of the template
68 67
      * @var string
@@ -84,8 +83,7 @@  discard block
 block discarded – undo
84 83
     /**
85 84
     * {@inheritdoc}
86 85
     */
87
-    public function __construct(string $markup, &$tokens, Parser $parser)
88
-    {
86
+    public function __construct(string $markup, &$tokens, Parser $parser) {
89 87
         $lexer = new Lexer('/("[^"]+"|\'[^\']+\')?/');
90 88
         if ($lexer->match($markup) && $lexer->isMatchNotNull(1)) {
91 89
             $this->templateName = substr(
Please login to merge, or discard this patch.
src/Tag/IfchangedTag.php 2 patches
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -67,16 +67,16 @@
 block discarded – undo
67 67
     protected string $lastValue = '';
68 68
 
69 69
     /**
70
-    * {@inheritdoc}
71
-    */
70
+     * {@inheritdoc}
71
+     */
72 72
     public function __construct(string $markup, &$tokens, Parser $parser)
73 73
     {
74 74
         parent::__construct($markup, $tokens, $parser);
75 75
     }
76 76
 
77 77
     /**
78
-    * {@inheritdoc}
79
-    */
78
+     * {@inheritdoc}
79
+     */
80 80
     public function render(Context $context): string
81 81
     {
82 82
         $output = parent::render($context);
Please login to merge, or discard this patch.
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -57,8 +57,7 @@  discard block
 block discarded – undo
57 57
  * Class IfchangedTag
58 58
  * @package Platine\Template\Tag
59 59
  */
60
-class IfchangedTag extends AbstractBlock
61
-{
60
+class IfchangedTag extends AbstractBlock {
62 61
     /**
63 62
      * The last value
64 63
      * @var string
@@ -68,8 +67,7 @@  discard block
 block discarded – undo
68 67
     /**
69 68
     * {@inheritdoc}
70 69
     */
71
-    public function __construct(string $markup, &$tokens, Parser $parser)
72
-    {
70
+    public function __construct(string $markup, &$tokens, Parser $parser) {
73 71
         parent::__construct($markup, $tokens, $parser);
74 72
     }
75 73
 
Please login to merge, or discard this patch.
src/Tag/ForTag.php 3 patches
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -107,8 +107,8 @@  discard block
 block discarded – undo
107 107
     protected $start;
108 108
 
109 109
     /**
110
-    * {@inheritdoc}
111
-    */
110
+     * {@inheritdoc}
111
+     */
112 112
     public function __construct(string $markup, &$tokens, Parser $parser)
113 113
     {
114 114
         parent::__construct($markup, $tokens, $parser);
@@ -144,8 +144,8 @@  discard block
 block discarded – undo
144 144
     }
145 145
 
146 146
     /**
147
-    * {@inheritdoc}
148
-    */
147
+     * {@inheritdoc}
148
+     */
149 149
     public function render(Context $context): string
150 150
     {
151 151
         if (!$context->hasRegister('for')) {
Please login to merge, or discard this patch.
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -196,8 +196,8 @@  discard block
 block discarded – undo
196 196
                 'index0' => $index,
197 197
                 'rindex' => $length - $index,
198 198
                 'rindex0' => $length - $index - 1,
199
-                'first' => ((int)$index === 0),
200
-                'last' => ((int)$index === ($length - 1)),
199
+                'first' => ((int) $index === 0),
200
+                'last' => ((int) $index === ($length - 1)),
201 201
             ]);
202 202
 
203 203
             $result .= $this->renderAll($this->nodeList, $context);
@@ -246,7 +246,7 @@  discard block
 block discarded – undo
246 246
             $offset = 0;
247 247
             if (isset($this->attributes['offset'])) {
248 248
                 $forRegister = $context->getRegister('for');
249
-                $offset =  ($this->attributes['offset'] === 'continue')
249
+                $offset = ($this->attributes['offset'] === 'continue')
250 250
                           ? (isset($forRegister[$this->name])
251 251
                                 ? (int) $forRegister[$this->name]
252 252
                                 : 0)
@@ -283,8 +283,8 @@  discard block
 block discarded – undo
283 283
                 'index0' => $index,
284 284
                 'rindex' => $length - $index,
285 285
                 'rindex0' => $length - $index - 1,
286
-                'first' => ((int)$index === 0),
287
-                'last' => ((int)$index === ($length - 1)),
286
+                'first' => ((int) $index === 0),
287
+                'last' => ((int) $index === ($length - 1)),
288 288
             ]);
289 289
 
290 290
             $result .= $this->renderAll($this->nodeList, $context);
Please login to merge, or discard this patch.
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -62,8 +62,7 @@  discard block
 block discarded – undo
62 62
  * Class ForTag
63 63
  * @package Platine\Template\Tag
64 64
  */
65
-class ForTag extends AbstractBlock
66
-{
65
+class ForTag extends AbstractBlock {
67 66
     /**
68 67
      * Type digit
69 68
      */
@@ -108,8 +107,7 @@  discard block
 block discarded – undo
108 107
     /**
109 108
     * {@inheritdoc}
110 109
     */
111
-    public function __construct(string $markup, &$tokens, Parser $parser)
112
-    {
110
+    public function __construct(string $markup, &$tokens, Parser $parser) {
113 111
         parent::__construct($markup, $tokens, $parser);
114 112
 
115 113
         $lexerCollection = new Lexer('/(\w+)\s+in\s+(' . Token::VARIABLE_NAME . ')/');
Please login to merge, or discard this patch.