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

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

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