Conditions | 3 |
Paths | 2 |
Total Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
14 | public function process(HtmlElement $element) |
||
15 | { |
||
16 | $method = strtolower($element->getAttribute('method')); |
||
17 | |||
18 | if ($method !== 'get' && $method !== 'post') { |
||
19 | $element->setAttribute('method', 'post'); |
||
20 | $element->appendInnerText('<input type="hidden" name="_method" value="'.strtoupper($method).'" />'); |
||
21 | } |
||
22 | } |
||
23 | } |
||
24 |