Vote Details for "Net_HL7" by arnaud

» Details
» Comment
Some of the code is likely to break under PHP5:

ex:
It is in the Send method of Connection.php
return new Net_HL7_Response($data);

should be

$ret = new Net_HL7_Response($data);
return $ret

You may even want to add a return by reference for the method naming it &send instead of send.

I find the classes layout a bit weird, the base file containing almost nothing but as I don't dont know HL7 I won't make suggestions which could prove off target later :)