Connecting multiple ports to a single TLM export

Is it allowed to connected multiple TLM ports to a single TLM export? Is it a good coding practice?

As per the link below, it is not possible to connect multiple ports to single export.But opposite can be true → we can connect single port to multiple exports.

https://verificationacademy.com/cookbook/analysisport

In reply to mpattaje:

analysis port are used for one to many connection. Here i what i want to do is to connect single put export with multiple put ports.
I didn’t see any place where cookbook mentioned that this is not supported.

Thanks

In reply to Naven8:

In reply to mpattaje:
analysis port are used for one to many connection. Here i what i want to do is to connect single put export with multiple put ports.
I didn’t see any place where cookbook mentioned that this is not supported.
Thanks

I think that you just need to implement the connection same as one to one but it was multiple times.
Ex:
a[2] → port,
b → export

a[0].connect(b);
a[1].connect(b);