| Total Complexity | 2 |
| Total Lines | 27 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | class StreamedResponse extends BaseStreamedResponse |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * Output buffer |
||
| 14 | * |
||
| 15 | * @var string |
||
| 16 | */ |
||
| 17 | protected $output; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * Get output buffer |
||
| 21 | * |
||
| 22 | * @return string |
||
| 23 | */ |
||
| 24 | public function getOutput(): ?string |
||
| 25 | { |
||
| 26 | return $this->output; |
||
| 27 | } |
||
| 28 | |||
| 29 | /** |
||
| 30 | * Set output buffer |
||
| 31 | * |
||
| 32 | * @param string $output |
||
| 33 | */ |
||
| 34 | public function setOutput(?string $output = null): void |
||
| 37 | } |
||
| 38 | } |