Passed
Push — develop ( acf7d3...ede307 )
by nguereza
10:23
created
src/Tag/SetTag.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -75,8 +75,8 @@  discard block
 block discarded – undo
75 75
     protected string $variableName;
76 76
 
77 77
     /**
78
-    * {@inheritdoc}
79
-    */
78
+     * {@inheritdoc}
79
+     */
80 80
     public function __construct(string $markup, array &$tokens, Parser $parser)
81 81
     {
82 82
         $lexer = new Lexer('/(\w+)\s*=\s*(.*)\s*/');
@@ -92,8 +92,8 @@  discard block
 block discarded – undo
92 92
     }
93 93
 
94 94
     /**
95
-    * {@inheritdoc}
96
-    */
95
+     * {@inheritdoc}
96
+     */
97 97
     public function render(Context $context): string
98 98
     {
99 99
         $output = $this->variable->render($context);
Please login to merge, or discard this patch.
src/Tag/IfTag.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -76,8 +76,8 @@  discard block
 block discarded – undo
76 76
     protected array $blocks = [];
77 77
 
78 78
     /**
79
-    * {@inheritdoc}
80
-    */
79
+     * {@inheritdoc}
80
+     */
81 81
     public function __construct(string $markup, array &$tokens, Parser $parser)
82 82
     {
83 83
         //Initialize
@@ -89,8 +89,8 @@  discard block
 block discarded – undo
89 89
     }
90 90
 
91 91
     /**
92
-    * {@inheritdoc}
93
-    */
92
+     * {@inheritdoc}
93
+     */
94 94
     public function render(Context $context): string
95 95
     {
96 96
         $context->push();
@@ -216,8 +216,8 @@  discard block
 block discarded – undo
216 216
     }
217 217
 
218 218
     /**
219
-    * {@inheritdoc}
220
-    */
219
+     * {@inheritdoc}
220
+     */
221 221
     protected function unknownTag(string $tag, string $param, array $tokens): void
222 222
     {
223 223
         if ($tag === 'else' || $tag === 'elseif') {
Please login to merge, or discard this patch.