/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/NodeWalkerEvent.php (893B)
* * 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; final class NodeWalkerEvent { /** @psalm-readonly */ private Node $node; /** @psalm-readonly */ private bool $isEntering; public function __construct(Node $node, bool $isEntering = true) { $this->node = $node; $this->isEntering = $isEntering; } public function getNode(): Node { return $this->node; } public function isEntering(): bool { return $this->isEntering; } }