PHP 8.3.4 Released!

OrderedList наследует CommonMark\Node

(cmark >= 1.0.0)

Обзор классов

final class CommonMark\Node\OrderedList extends CommonMark\Node implements CommonMark\Interfaces\IVisitable, Traversable {
/* Наследуемые свойства */
public readonly ?Node $parent;
public readonly ?Node $previous;
public readonly ?Node $next;
public readonly ?Node $lastChild;
public readonly ?Node $firstChild;
public readonly int $startLine;
public readonly int $endLine;
public readonly int $startColumn;
public readonly int $endColumn;
/* Свойства */
public bool $tight;
public int $delimiter;
public int $start;
/* Конструктор */
public __construct()
public __construct(int $tight)
public __construct(int $tight, int $delimiter)
public __construct(int $tight, int $delimiter, int $start)
/* Наследуемые методы */
}

Содержание

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top