blob: c9f21470f150d2366646ffa2ecb44242eb4f8074 (
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
76
77
78
|
<?php
declare(strict_types=1);
namespace Doctrine\Persistence\Mapping;
use function strpos;
use function strrev;
use function strrpos;
use function substr;
/**
* PHP Runtime Reflection Service.
*/
class StaticReflectionService implements ReflectionService
{
/**
* {@inheritDoc}
*/
public function getParentClasses(string $class)
{
return [];
}
/**
* {@inheritDoc}
*/
public function getClassShortName(string $class)
{
$nsSeparatorLastPosition = strrpos($class, '\\');
if ($nsSeparatorLastPosition !== false) {
$class = substr($class, $nsSeparatorLastPosition + 1);
}
return $class;
}
/**
* {@inheritDoc}
*/
public function getClassNamespace(string $class)
{
$namespace = '';
if (strpos($class, '\\') !== false) {
$namespace = strrev(substr(strrev($class), (int) strpos(strrev($class), '\\') + 1));
}
return $namespace;
}
/**
* {@inheritDoc}
*
* @return null
*/
public function getClass(string $class)
{
return null;
}
/**
* {@inheritDoc}
*/
public function getAccessibleProperty(string $class, string $property)
{
return null;
}
/**
* {@inheritDoc}
*/
public function hasPublicMethod(string $class, string $method)
{
return true;
}
}
|