| 1 | <?php |
||
| 10 | trait HtmlInjectorTrait |
||
| 11 | { |
||
| 12 | use StreamTrait; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * Inject some code just before any tag. |
||
| 16 | * |
||
| 17 | * @param ResponseInterface $response |
||
| 18 | * @param string $code |
||
| 19 | * @param string $tag |
||
| 20 | * |
||
| 21 | * @return ResponseInterface |
||
| 22 | */ |
||
| 23 | private function inject(ResponseInterface $response, $code, $tag = 'body') |
||
| 39 | } |
||
| 40 |