Neos\Flow\Tests\Functional\Reflection\ReflectionServiceTest::methodParameterTypeExpansionWorksWithFullyQualifiedClassName PHP 메소드

methodParameterTypeExpansionWorksWithFullyQualifiedClassName() 공개 메소드

    public function methodParameterTypeExpansionWorksWithFullyQualifiedClassName()
    {
        $methodParameters = $this->reflectionService->getMethodParameters(Reflection\Fixtures\Model\EntityWithUseStatements::class, 'fullyQualifiedClassName');
        $expectedType = Reflection\Fixtures\Model\SubEntity::class;
        $actualType = $methodParameters['parameter']['type'];
        $this->assertSame($expectedType, $actualType);
    }