Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
25 | 1 | public function getMessageString($withSeq = true, $withCrc = true): string |
|
26 | { |
||
27 | 1 | $this->newMessage('17'); |
|
28 | 1 | $this->addFixedOption($this->datestamp(), 18); |
|
29 | 1 | $this->addVarOption('AO', $this->getVariable('InstitutionId')); |
|
30 | 1 | $this->addVarOption('AB', $this->getVariable('ItemIdentifier')); |
|
31 | 1 | $this->addVarOption('AC', $this->getVariable('TerminalPassword')); |
|
32 | |||
33 | 1 | return $this->returnMessage($withSeq, $withCrc); |
|
34 | } |
||
36 |