-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathModelMethodExtension.php
117 lines (106 loc) · 3.25 KB
/
ModelMethodExtension.php
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<?php
declare(strict_types=1);
namespace PHPStanCakePHP2\ClassMethodExtension;
use Exception;
use PHPStan\Reflection\ClassReflection;
use PHPStan\Reflection\MethodReflection;
use PHPStan\Reflection\MethodsClassReflectionExtension;
use PHPStan\Reflection\ReflectionProvider;
use PHPStanCakePHP2\ModelBehaviorMethodExtractor;
use PHPStanCakePHP2\Reflection\ClassReflectionFinder;
/**
* Adds methods to {@link Model}s from {@link ModelBehavior} classes.
*/
final class ModelMethodExtension implements MethodsClassReflectionExtension
{
private ReflectionProvider $reflectionProvider;
/**
* @var array<string>
*/
private array $behaviorPaths;
/**
* @var array<MethodReflection>|null
*/
private ?array $behaviorMethods = null;
/**
* @param array<string> $behaviorPaths
*/
public function __construct(
ReflectionProvider $reflectionProvider,
array $behaviorPaths
) {
$this->reflectionProvider = $reflectionProvider;
$this->behaviorPaths = $behaviorPaths;
}
/**
* @throws Exception
*/
public function hasMethod(
ClassReflection $classReflection,
string $methodName
): bool {
return $classReflection->is('Model')
&& in_array(
$methodName,
array_map(
[$this, 'getMethodReflectionName'],
$this->getBehaviorMethods()
),
true
);
}
public function getMethod(
ClassReflection $classReflection,
string $methodName
): MethodReflection {
$methodReflections = array_filter(
$this->getBehaviorMethods(),
static function (
MethodReflection $methodReflection
) use ($methodName) {
return $methodReflection->getName() === $methodName;
}
);
if (! $methodReflections) {
throw new Exception('Method not found');
}
return reset($methodReflections);
}
/**
* Gets all behavior methods from known behavior classes.
*
* @return array<MethodReflection>
*
* @throws Exception
*/
private function getBehaviorMethods(): array
{
if ($this->behaviorMethods === null) {
$classReflectionFinder = new ClassReflectionFinder(
$this->reflectionProvider
);
$classReflections = $classReflectionFinder->getClassReflections(
$this->behaviorPaths,
'ModelBehavior'
);
$this->behaviorMethods = [];
foreach ($classReflections as $classReflection) {
$modelBehaviorMethodExtractor =
new ModelBehaviorMethodExtractor($classReflection);
$this->behaviorMethods = array_merge(
$this->behaviorMethods,
$modelBehaviorMethodExtractor->getModelBehaviorMethods()
);
}
}
return $this->behaviorMethods;
}
/**
* Returns the name of a method from its reflection.
*/
private function getMethodReflectionName(
MethodReflection $methodReflection
): string {
return $methodReflection->getName();
}
}