3
3
namespace PHPStan \Reflection \Dibi ;
4
4
5
5
use Dibi \Fluent ;
6
- use PHPStan \Broker \ Broker ;
6
+ use PHPStan \Reflection \ ReflectionProvider ;
7
7
use PHPStan \Testing \PHPStanTestCase ;
8
8
use PHPStan \Type \VerbosityLevel ;
9
9
use stdClass ;
10
10
11
11
class DibiFluentClassReflectionExtensionTest extends PHPStanTestCase
12
12
{
13
13
14
- private Broker $ broker ;
14
+ private ReflectionProvider $ reflectionProvider ;
15
15
16
16
private DibiFluentClassReflectionExtension $ extension ;
17
17
18
18
protected function setUp (): void
19
19
{
20
- $ this ->broker = $ this ->createBroker ();
20
+ $ this ->reflectionProvider = $ this ->createReflectionProvider ();
21
21
$ this ->extension = new DibiFluentClassReflectionExtension ();
22
22
}
23
23
@@ -43,13 +43,13 @@ public function dataHasMethod(): array
43
43
*/
44
44
public function testHasMethod (string $ className , bool $ result ): void
45
45
{
46
- $ classReflection = $ this ->broker ->getClass ($ className );
46
+ $ classReflection = $ this ->reflectionProvider ->getClass ($ className );
47
47
self ::assertSame ($ result , $ this ->extension ->hasMethod ($ classReflection , 'select ' ));
48
48
}
49
49
50
50
public function testGetMethod (): void
51
51
{
52
- $ classReflection = $ this ->broker ->getClass (Fluent::class);
52
+ $ classReflection = $ this ->reflectionProvider ->getClass (Fluent::class);
53
53
$ methodReflection = $ this ->extension ->getMethod ($ classReflection , 'select ' );
54
54
$ parametersAcceptor = $ methodReflection ->getVariants ()[0 ];
55
55
self ::assertSame ('select ' , $ methodReflection ->getName ());
0 commit comments