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; /** * Contract for metadata drivers. */ interface MappingDriver { /** * Loads the metadata for the specified class into the provided container. * * @psalm-param class-string<T> $className * @psalm-param ClassMetadata<T> $metadata * * @return void * * @template T of object */ public function loadMetadataForClass(string $className, ClassMetadata $metadata); /** * Gets the names of all mapped classes known to this driver. * * @return array<int, string> The names of all mapped classes known to this driver. * @psalm-return list<class-string> */ public function getAllClassNames(); /** * Returns whether the class with the specified name should have its metadata loaded. * This is only the case if it is either mapped as an Entity or a MappedSuperclass. * * @psalm-param class-string $className * * @return bool */ public function isTransient(string $className); }
<=Back
Liking