| 1 | <?php |
||
| 9 | class RawInputParam extends InputParam |
||
| 10 | { |
||
| 11 | protected $type = self::TYPE_POST_RAW; |
||
| 12 | |||
| 13 | 3 | public function setMulti(): InputParam |
|
| 17 | |||
| 18 | 3 | public function getValue() |
|
| 19 | { |
||
| 20 | 3 | return file_get_contents("php://input") ?: $this->default; |
|
| 21 | } |
||
| 22 | |||
| 23 | 3 | protected function addFormInput(Form $form, string $key): BaseControl |
|
| 28 | } |
||
| 29 |