Completed
Branch master (81790f)
by Christian
01:48
created
src/ExpressionLanguage/Parser.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -262,6 +262,9 @@  discard block
 block discarded – undo
262 262
         return $this->parsePrimaryExpression();
263 263
     }
264 264
 
265
+    /**
266
+     * @param Node $expr
267
+     */
265 268
     protected function parseConditionalExpression($expr): Node
266 269
     {
267 270
         while ($this->stream->current->test(Token::PUNCTUATION_TYPE, '?')) {
@@ -420,6 +423,9 @@  discard block
 block discarded – undo
420 423
         return $node;
421 424
     }
422 425
 
426
+    /**
427
+     * @param Node $node
428
+     */
423 429
     public function parsePostfixExpression($node): Node
424 430
     {
425 431
         $token = $this->stream->current;
Please login to merge, or discard this patch.