Completed
Push — master ( c30c99...290a7f )
by Colin
24s queued 10s
created
src/Delimiter/DelimiterStack.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
     }
114 114
 
115 115
     /**
116
-     * @param string|string[] $characters
116
+     * @param string[] $characters
117 117
      *
118 118
      * @return Delimiter|null
119 119
      */
@@ -134,6 +134,9 @@  discard block
 block discarded – undo
134 134
         return $opener;
135 135
     }
136 136
 
137
+    /**
138
+     * @param Delimiter|null $stackBottom
139
+     */
137 140
     public function processDelimiters(?Delimiter $stackBottom, DelimiterProcessorCollection $processors)
138 141
     {
139 142
         $openersBottom = [];
Please login to merge, or discard this patch.
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.