Comments for "Net_HL7"

» Submit Your Comment
Comments are only accepted during the "Proposal" phase. This proposal is currently in the "Finished" phase.
» Comments
  • Bertrand Mansion  [2004-06-16 12:03 UTC]

    What is HL7 ?
  • Tobias Schlitt  [2004-06-16 14:39 UTC]

    @Bertrand: Maybe you should read the proposal description?
    @Duco:

    There are some strange documentation texts, such as:

    <snip file="Net/HL7/Connection.php">
    /**
    * $conn = new Net::HL7::Connection('localhost', 8089);
    *
    * $req = new Net::HL7::Request();
    ...
    </snip>

    The form and ammount of docs is quite nice, but the calls are nonsense, IMHO. :)

    Some coding standards to fix:
    <snip>
    function Net_HL7_Connection($host, $port) {
    </snip>

    should be

    <snip>
    function Net_HL7_Connection($host, $port)
    {
    </snip>

    Else I got no clue, what that HL7 stuff is concretely used for, but that's not necessary, I guess. :)