Completed
Push — master ( 72e87e...d3fffa )
by Colin
17s queued 11s
created
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.
src/EnvironmentInterface.php 1 patch
Doc Comments   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
     public function getConfig($key = null, $default = null);
34 34
 
35 35
     /**
36
-     * @return iterable<BlockParserInterface>
36
+     * @return \ArrayIterator|null
37 37
      */
38 38
     public function getBlockParsers(): iterable;
39 39
 
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
     public function getDelimiterProcessors(): DelimiterProcessorCollection;
51 51
 
52 52
     /**
53
-     * @return iterable<DocumentProcessorInterface>
53
+     * @return \ArrayIterator|null
54 54
      */
55 55
     public function getDocumentProcessors(): iterable;
56 56
 
@@ -81,6 +81,7 @@  discard block
 block discarded – undo
81 81
      * Dispatches the given event to listeners
82 82
      *
83 83
      * @param AbstractEvent $event
84
+     * @return void
84 85
      */
85 86
     public function dispatch(AbstractEvent $event): void;
86 87
 }
Please login to merge, or discard this patch.