Completed
Push — master ( f73407...9eba7f )
by Colin
02:44
created
src/Block/Renderer/ListItemRenderer.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
      * @param ElementRendererInterface $htmlRenderer
28 28
      * @param bool                     $inTightList
29 29
      *
30
-     * @return string
30
+     * @return HtmlElement
31 31
      */
32 32
     public function render(AbstractBlock $block, ElementRendererInterface $htmlRenderer, bool $inTightList = false)
33 33
     {
Please login to merge, or discard this patch.
src/EnvironmentInterface.php 1 patch
Doc Comments   +3 added lines, -3 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
 
@@ -44,12 +44,12 @@  discard block
 block discarded – undo
44 44
     public function getInlineParsersForCharacter(string $character): iterable;
45 45
 
46 46
     /**
47
-     * @return iterable<InlineProcessorInterface>
47
+     * @return \ArrayIterator|null
48 48
      */
49 49
     public function getInlineProcessors(): iterable;
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.