Neos\Flow\Tests\Functional\Reflection\ReflectionServiceTest::methodParameterTypeExpansionWorksWithAliasedClassName PHP Метод

methodParameterTypeExpansionWorksWithAliasedClassName() публичный Метод

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