Cassandra\Type\UserTypeTest::equalTypes PHP Method

equalTypes() public method

public equalTypes ( )
    public function equalTypes()
    {
        return array(array(Type::userType('a', Type::int()), Type::userType('a', Type::int())), array(Type::userType('a', Type::int(), 'b', Type::varchar()), Type::userType('a', Type::int(), 'b', Type::varchar())), array(Type::userType('a', Type::int(), 'b', Type::varchar(), 'c', Type::bigint()), Type::userType('a', Type::int(), 'b', Type::varchar(), 'c', Type::bigint())), array(Type::userType('a', Type::collection(Type::int()), 'b', Type::set(Type::int())), Type::userType('a', Type::collection(Type::int()), 'b', Type::set(Type::int()))));
    }