Completed
Push — master ( 33e779...8dfaf9 )
by Colin
20s
created
src/EnvironmentInterface.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
     public function getConfig($key = null, $default = null);
33 33
 
34 34
     /**
35
-     * @return iterable<BlockParserInterface>
35
+     * @return \ArrayIterator|null
36 36
      */
37 37
     public function getBlockParsers(): iterable;
38 38
 
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
     public function getDelimiterProcessors(): DelimiterProcessorCollection;
50 50
 
51 51
     /**
52
-     * @return iterable<DocumentProcessorInterface>
52
+     * @return \ArrayIterator|null
53 53
      */
54 54
     public function getDocumentProcessors(): iterable;
55 55
 
Please login to merge, or discard this patch.
src/Delimiter/DelimiterStack.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
     }
113 113
 
114 114
     /**
115
-     * @param string|string[] $characters
115
+     * @param string[] $characters
116 116
      *
117 117
      * @return DelimiterInterface|null
118 118
      */
@@ -133,6 +133,9 @@  discard block
 block discarded – undo
133 133
         return $opener;
134 134
     }
135 135
 
136
+    /**
137
+     * @param DelimiterInterface|null $stackBottom
138
+     */
136 139
     public function processDelimiters(?DelimiterInterface $stackBottom, DelimiterProcessorCollection $processors)
137 140
     {
138 141
         $openersBottom = [];
Please login to merge, or discard this patch.