<?php declare(strict_types=1); /* * This file is part of the league/commonmark package. * * (c) Colin O'Dell <colinodell@gmail.com> * * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace League\CommonMark\Node; /** * Interface for a node which directly contains line(s) of text */ interface StringContainerInterface { public function setLiteral(string $literal): void; public function getLiteral(): string; }
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
Block | Folder | 0755 |
|
|
Inline | Folder | 0755 |
|
|
Query | Folder | 0755 |
|
|
Node.php | File | 6.51 KB | 0644 |
|
NodeIterator.php | File | 1.4 KB | 0644 |
|
NodeWalker.php | File | 2.23 KB | 0644 |
|
NodeWalkerEvent.php | File | 935 B | 0644 |
|
Query.php | File | 3.37 KB | 0644 |
|
RawMarkupContainerInterface.php | File | 486 B | 0644 |
|
StringContainerHelper.php | File | 1.38 KB | 0644 |
|
StringContainerInterface.php | File | 667 B | 0644 |
|