REDROOM
PHP 8.3.31
Path:
Logout
Edit File
Size: 1.58 KB
Close
/home/getspomw/royalsquad.us/vendor/league/commonmark/src/Delimiter/Bracket.php
Text
Base64
<?php declare(strict_types=1); /* * This file is part of the league/commonmark package. * * (c) Colin O'Dell <colinodell@gmail.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace League\CommonMark\Delimiter; use League\CommonMark\Node\Node; final class Bracket { private Node $node; private ?Bracket $previous; private bool $hasNext = false; private int $position; private bool $image; private bool $active = true; public function __construct(Node $node, ?Bracket $previous, int $position, bool $image) { $this->node = $node; $this->previous = $previous; $this->position = $position; $this->image = $image; } public function getNode(): Node { return $this->node; } public function getPrevious(): ?Bracket { return $this->previous; } public function hasNext(): bool { return $this->hasNext; } public function getPosition(): int { return $this->position; } public function isImage(): bool { return $this->image; } /** * Only valid in the context of non-images (links) */ public function isActive(): bool { return $this->active; } /** * @internal */ public function setHasNext(bool $hasNext): void { $this->hasNext = $hasNext; } /** * @internal */ public function setActive(bool $active): void { $this->active = $active; } }
Save
Close
Exit & Reset
Text mode: syntax highlighting auto-detects file type.
Directory Contents
Dirs: 1 × Files: 5
Delete Selected
Select All
Select None
Sort:
Name
Size
Modified
Enable drag-to-move
Name
Size
Perms
Modified
Actions
Processor
DIR
-
drwxrwxrwx
2025-09-17 06:53:06
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
Bracket.php
1.58 KB
lrw-rw-rw-
2025-09-17 06:53:06
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
Delimiter.php
2.97 KB
lrw-rw-rw-
2025-09-17 06:53:06
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
DelimiterInterface.php
1.39 KB
lrw-rw-rw-
2025-09-17 06:53:06
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
DelimiterParser.php
3.78 KB
lrw-rw-rw-
2025-09-17 06:53:06
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
DelimiterStack.php
12.88 KB
lrw-rw-rw-
2025-09-17 06:53:06
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
Zip Selected
If ZipArchive is unavailable, a
.tar
will be created (no compression).