3
3
namespace Tools \PHPStan ;
4
4
5
5
use Registry ;
6
- use PHPStan \Broker \Broker ;
7
6
use PHPStan \Reflection \ClassReflection ;
8
7
use PHPStan \Reflection \PropertiesClassReflectionExtension ;
9
8
use PHPStan \Reflection \PropertyReflection ;
9
+ use PHPStan \Reflection \ReflectionProvider ;
10
10
use PHPStan \Type \Generic \GenericObjectType ;
11
11
use PHPStan \Type \NullType ;
12
12
use PHPStan \Type \ObjectType ;
13
13
use PHPStan \Type \TypeCombinator ;
14
14
15
15
class RegistryPropertyReflectionExtension implements PropertiesClassReflectionExtension {
16
+ private ReflectionProvider $ reflectionProvider ;
17
+
18
+ public function __construct (ReflectionProvider $ reflectionProvider ) {
19
+ $ this ->reflectionProvider = $ reflectionProvider ;
20
+ }
21
+
16
22
public function hasProperty (ClassReflection $ classReflection , string $ propertyName ): bool {
17
23
if (!$ classReflection ->is (Registry::class)) {
18
24
return false ;
@@ -25,10 +31,9 @@ public function getProperty(ClassReflection $classReflection, string $propertyNa
25
31
preg_match ('/^(model_.+)$/ ' , $ propertyName , $ matches );
26
32
$ className = $ this ->convertSnakeToStudly ($ matches [1 ]);
27
33
28
- $ broker = Broker::getInstance ();
29
34
30
35
$ type = new NullType ();
31
- if ($ broker ->hasClass ($ className )) {
36
+ if ($ this -> reflectionProvider ->hasClass ($ className )) {
32
37
$ found = new ObjectType ($ className );
33
38
$ type = new GenericObjectType ('\Proxy ' , [$ found ]);
34
39
$ type = TypeCombinator::addNull ($ type );
0 commit comments