OrderedList concrete CommonMark\Node

(cmark >= 1.0.0)

Sinopse da classe

final CommonMark\Node\OrderedList extends CommonMark\Node implements CommonMark\Interfaces\IVisitable , Traversable {
/* Propriedades herdadas */
public readonly Node|null $parent;
public readonly Node|null $previous;
public readonly Node|null $next;
public readonly Node|null $lastChild;
public readonly Node|null $firstChild;
public readonly int $startLine;
public readonly int $endLine;
public readonly int $startColumn;
public readonly int $endColumn;
/* Propriedades */
public bool $tight;
public int $delimiter;
public int $start;
/* Constructor */
public __construct ( )
public __construct ( int $tight )
public __construct ( int $tight , int $delimiter )
public __construct ( int $tight , int $delimiter , int $start )
/* Métodos herdados */
public CommonMark\Node::unlink ( ) : void
}

Índice

add a note add a note

User Contributed Notes

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