Passed
Push — develop ( 1b3636...0d572e )
by nguereza
02:01
created
src/Tag/IfnotTag.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -56,8 +56,8 @@
 block discarded – undo
56 56
 class IfnotTag extends IfTag
57 57
 {
58 58
     /**
59
-    * {@inheritdoc}
60
-    */
59
+     * {@inheritdoc}
60
+     */
61 61
     protected function negateCondition($value)
62 62
     {
63 63
         return !$value;
Please login to merge, or discard this patch.
src/Tag/IncrementTag.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -62,15 +62,15 @@  discard block
 block discarded – undo
62 62
  */
63 63
 class IncrementTag extends AbstractTag
64 64
 {
65
-     /**
66
-     * Name of the variable to increment
67
-     * @var string
68
-     */
65
+        /**
66
+         * Name of the variable to increment
67
+         * @var string
68
+         */
69 69
     protected string $name;
70 70
 
71 71
     /**
72
-    * {@inheritdoc}
73
-    */
72
+     * {@inheritdoc}
73
+     */
74 74
     public function __construct(string $markup, &$tokens, Parser $parser)
75 75
     {
76 76
         $lexer = new Lexer('/(' . Token::VARIABLE_NAME . ')/');
@@ -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
         // if the value is not set in the environment check to see if it
Please login to merge, or discard this patch.