| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 8 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 16 | 17 | protected function renderRequestHeader(): string |
|
| 17 | { |
||
| 18 | 17 | return sprintf('%s%s%s%s%s%s', |
|
| 19 | 17 | Fsp\Strings::filler($this->getCommand(), 1), |
|
| 20 | 17 | Fsp\Strings::filler(0, 1), |
|
| 21 | 17 | Fsp\Strings::filler($this->getKey(), 2), |
|
| 22 | 17 | Fsp\Strings::filler($this->getSequence(), 2), |
|
| 23 | 17 | Fsp\Strings::filler($this->getDataLength(), 2), |
|
| 24 | 17 | Fsp\Strings::filler($this->getFilePosition(), 4) |
|
| 25 | 17 | ); |
|
| 40 |