| 1 | <?php |
||
| 11 | trait FormTrait |
||
| 12 | { |
||
| 13 | private $autoInsert = false; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * Configure if autoinsert or not the inputs automatically |
||
| 17 | * |
||
| 18 | * @param bool $autoInsert |
||
| 19 | * |
||
| 20 | * @return self |
||
| 21 | */ |
||
| 22 | public function autoInsert($autoInsert = true) |
||
| 28 | |||
| 29 | /** |
||
| 30 | * Insert content into all POST forms. |
||
| 31 | * |
||
| 32 | * @param ResponseInterface $response |
||
| 33 | * @param callable $replace |
||
| 34 | * |
||
| 35 | * @return ResponseInterface |
||
| 36 | */ |
||
| 37 | private function insertIntoPostForms(ResponseInterface $response, callable $replace) |
||
| 51 | } |
||
| 52 |