/home/techb158/dev.balacoffee.com/vendor/league/commonmark/src/Node
NameSizeModeActions
Block/-0755rm
Inline/-0755rm
Query/-0755rm
Node.php64660644editdlrm
NodeIterator.php13780644editdlrm
NodeWalker.php22010644editdlrm
NodeWalkerEvent.php8930644editdlrm
Query.php33120644editdlrm
RawMarkupContainerInterface.php4650644editdlrm
StringContainerHelper.php13560644editdlrm
StringContainerInterface.php6400644editdlrm
Edit: /home/techb158/dev.balacoffee.com/vendor/league/commonmark/src/Node/StringContainerInterface.php (640B)
* * 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; }