The type League\CommonMark\Extens...nvalidArgumentException was not found. Did you mean InvalidArgumentException? If so, make sure to prefix the type with \.
Loading history...
25
'TableOfContentsWrapper nodes should have 2 children, found ' . count($children)
26
);
27
}
28
4
$inner = $children[1];
29
4
if (! $inner instanceof TableOfContents) {
30
throw new InvalidArgumentException(
31
'TableOfContentsWrapper second node should be a TableOfContents, found ' . get_class($inner)