@@ -56,8 +56,8 @@ |
||
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; |
@@ -62,15 +62,15 @@ discard block |
||
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 |
||
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 |