Ghost Exploiter Team Official
Mass Deface
Directory >>
/
var
/
www
/
html
/
back
/
vendor
/
phpdocumentor
/
reflection
/
src
/
phpDocumentor
/
Reflection
/
Php
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
type
file
dir
+File/Dir
Expression
--
ren
Factory
--
ren
ValueEvaluator
--
ren
Argument.php
2.532KB
edt
ren
AsymmetricVisibility.php
0.528KB
edt
ren
Attribute.php
0.683KB
edt
ren
AttributeContainer.php
0.239KB
edt
ren
CallArgument.php
0.451KB
edt
ren
Class_.php
5.524KB
edt
ren
Constant.php
3.146KB
edt
ren
EnumCase.php
2.468KB
edt
ren
Enum_.php
4.029KB
edt
ren
Expression.php
5.959KB
edt
ren
File.php
5.117KB
edt
ren
Function_.php
3.065KB
edt
ren
HasAttributes.php
0.39KB
edt
ren
Interface_.php
3.109KB
edt
ren
MetadataContainer.php
1.052KB
edt
ren
Method.php
4.451KB
edt
ren
Namespace_.php
3.538KB
edt
ren
NodesFactory.php
1.946KB
edt
ren
Project.php
2.122KB
edt
ren
ProjectFactory.php
7.448KB
edt
ren
ProjectFactoryStrategie
...
1.854KB
edt
ren
ProjectFactoryStrategy.php
1.361KB
edt
ren
Property.php
4.522KB
edt
ren
PropertyHook.php
2.085KB
edt
ren
StrategyContainer.php
0.682KB
edt
ren
Trait_.php
3.732KB
edt
ren
Visibility.php
1.63KB
edt
ren
<?php declare(strict_types=1); /** * This file is part of phpDocumentor. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. * * @link http://phpdoc.org */ namespace phpDocumentor\Reflection\Php; use Override; use phpDocumentor\Reflection\Fqsen; use phpDocumentor\Reflection\Project as ProjectInterface; /** * Represents the entire project with its files, namespaces and indexes. * * @api */ final class Project implements ProjectInterface { /** @var File[] */ private array $files = []; /** @var Namespace_[] */ private array $namespaces = []; /** * Initializes this descriptor. * * @param string $name Name of the current project. * @param Namespace_|null $rootNamespace Root namespace of the project. */ public function __construct(private readonly string $name, private Namespace_|null $rootNamespace = null) { if ($this->rootNamespace !== null) { return; } $this->rootNamespace = new Namespace_(new Fqsen('\\')); } /** * Returns the name of this project. */ #[Override] public function getName(): string { return $this->name; } /** * Returns all files with their sub-elements. * * @return File[] */ public function getFiles(): array { return $this->files; } /** * Add a file to this project. */ public function addFile(File $file): void { $this->files[$file->getPath()] = $file; } /** * Returns all namespaces with their sub-elements. * * @return Namespace_[] */ public function getNamespaces(): array { return $this->namespaces; } /** * Add a namespace to the project. */ public function addNamespace(Namespace_ $namespace): void { $this->namespaces[(string) $namespace->getFqsen()] = $namespace; } /** * Returns the root (global) namespace. */ public function getRootNamespace(): Namespace_|null { return $this->rootNamespace; } }
<=Back
Liking