Total Complexity | 3 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
19 | class FormEncodedDataFormatter extends XMLDataFormatter |
||
20 | { |
||
21 | |||
22 | public function supportedExtensions() |
||
23 | { |
||
24 | return array( |
||
25 | ); |
||
26 | } |
||
27 | |||
28 | public function supportedMimeTypes() |
||
29 | { |
||
30 | return array( |
||
31 | 'application/x-www-form-urlencoded' |
||
32 | ); |
||
33 | } |
||
34 | |||
35 | public function convertStringToArray($strData) |
||
40 | //TODO: It would be nice to implement this function in Convert.php |
||
41 | //return Convert::querystr2array($strData); |
||
42 | } |
||
44 |