Completed
Pull Request — master (#497)
by Colin
02:59 queued 01:38
created
src/Extension/Footnote/Parser/FootnoteRefParser.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,8 +15,8 @@
 block discarded – undo
15 15
 namespace League\CommonMark\Extension\Footnote\Parser;
16 16
 
17 17
 use League\CommonMark\Extension\Footnote\Node\FootnoteRef;
18
-use League\CommonMark\Parser\Inline\InlineParserInterface;
19 18
 use League\CommonMark\Parser\InlineParserContext;
19
+use League\CommonMark\Parser\Inline\InlineParserInterface;
20 20
 use League\CommonMark\Reference\Reference;
21 21
 
22 22
 final class FootnoteRefParser implements InlineParserInterface
Please login to merge, or discard this patch.
src/Extension/Footnote/Parser/AnonymousFootnoteRefParser.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,8 +17,8 @@
 block discarded – undo
17 17
 use League\CommonMark\Extension\Footnote\Node\FootnoteRef;
18 18
 use League\CommonMark\Normalizer\SlugNormalizer;
19 19
 use League\CommonMark\Normalizer\TextNormalizerInterface;
20
-use League\CommonMark\Parser\Inline\InlineParserInterface;
21 20
 use League\CommonMark\Parser\InlineParserContext;
21
+use League\CommonMark\Parser\Inline\InlineParserInterface;
22 22
 use League\CommonMark\Reference\Reference;
23 23
 
24 24
 final class AnonymousFootnoteRefParser implements InlineParserInterface
Please login to merge, or discard this patch.
src/Extension/Attributes/Event/AttributesListener.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
     }
62 62
 
63 63
     /**
64
-     * @param Attributes|AttributesInline $node
64
+     * @param Node $node
65 65
      *
66 66
      * @return array<Node|string|null>
67 67
      */
@@ -125,6 +125,7 @@  discard block
 block discarded – undo
125 125
 
126 126
     /**
127 127
      * Get any previous block (sibling or parent) this might apply to
128
+     * @param Node $node
128 129
      */
129 130
     private static function getNext(?Node $node = null): ?Node
130 131
     {
Please login to merge, or discard this patch.