Aranya Sen
Aranya Sen
For sending message you can follow this section in the docs: https://github.com/senaranya/HL7#send-messages-to-remote-listeners The sender can only receive an ACK and no other message-type. So for incoming messages, you may have...
Hi, If you're using the HL7 class to build the object, try the method `doNotSplitRepetition()`, i.e. ```php HL7::from() ->doNotSplitRepetition() ... ``` If you're using the Message class, try the 6th...
Hello! Can you please give me a sample message, so that I can try it out? Please also share the expected and observed output for `toString()` from the sample
Can you try using `doNotSplitRepetition`: ```php HL7::from($msgString) ->doNotSplitRepetition() ->createMessage() ->toString(true); ```
I'll work on this as soon as I can. Thanks for raising this issue
I've added a PR #109 with the change. Can you check if that's going to work for you?
Try again please, I've pushed a fix in the phpdoc
Hi, The method `from()` was not available in the 2.1 version. In fact, the class HL7 was undocumented and unsupported in that. You may use Message() class though. See the...
Thank you for your contribution! Much appreciated! Can you please keep only those changes that's needed for the purpose of the ticket? For example, 1. In this case `@param int...
That does make sense. Thank you for sharing. Please split it into smaller PRs if you don't mind...