summaryrefslogtreecommitdiff
path: root/vendor/doctrine/persistence/src/Persistence/Mapping/ReflectionService.php
blob: 9484e1f3c67f2836c83d254885fa8e744b6ea250 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<?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);
}