Phan\Tests\Language\UnionTypeTest::testGenericArrayTypeFromString PHP Method

testGenericArrayTypeFromString() public method

    public function testGenericArrayTypeFromString()
    {
        $type = Type::fromFullyQualifiedString("int[][]");
        $this->assertEquals($type->genericArrayElementType()->__toString(), "int[]");
    }