| Total Complexity | 2 | 
| Total Lines | 19 | 
| Duplicated Lines | 0 % | 
| Coverage | 100% | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php  | 
            ||
| 7 | class RawInputDummy implements RawInputInterface  | 
            ||
| 8 | { | 
            ||
| 9 | /** @var string */  | 
            ||
| 10 | protected string $body = '';  | 
            ||
| 11 | |||
| 12 | /**  | 
            ||
| 13 | * @return string  | 
            ||
| 14 | */  | 
            ||
| 15 | 7 | public function get(): string  | 
            |
| 16 |     { | 
            ||
| 17 | 7 | return $this->body;  | 
            |
| 18 | }  | 
            ||
| 19 | |||
| 20 | /**  | 
            ||
| 21 | * @param string $body  | 
            ||
| 22 | */  | 
            ||
| 23 | 7 | public function set(string $body)  | 
            |
| 26 | 7 | }  | 
            |
| 27 | }  | 
            ||
| 28 |