Conditions | 1 |
Paths | 1 |
Total Lines | 5 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
44 | 1 | public function encodeHeader(Header $header): string |
|
45 | { |
||
46 | 1 | return $this->frameEncoder->encodeFrame($header->getFrame()) |
|
47 | 1 | . $this->frameAddressEncoder->encodeFrameAddress($header->getFrameAddress()) |
|
48 | 1 | . $this->protocolHeaderEncoder->encodeProtocolHeader($header->getProtocolHeader()); |
|
49 | } |
||
51 |