Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
0.00% |
0 / 4 |
|
0.00% |
0 / 4 |
CRAP | |
0.00% |
0 / 1 |
| barfoo | |
0.00% |
0 / 4 |
|
0.00% |
0 / 4 |
20 | |
0.00% |
0 / 1 |
| get_data | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| prepare_form | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| process_form | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| get_template_name | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| 1 | <?php |
| 2 | |
| 3 | namespace phpbb\avatar\driver; |
| 4 | |
| 5 | class barfoo extends \phpbb\avatar\driver\driver |
| 6 | { |
| 7 | public function get_data($row) |
| 8 | { |
| 9 | return array(); |
| 10 | } |
| 11 | |
| 12 | public function prepare_form($request, $template, $user, $row, &$error) |
| 13 | { |
| 14 | return false; |
| 15 | } |
| 16 | |
| 17 | public function process_form($request, $template, $user, $row, &$error) |
| 18 | { |
| 19 | return false; |
| 20 | } |
| 21 | |
| 22 | public function get_template_name() |
| 23 | { |
| 24 | return 'barfoo.html'; |
| 25 | } |
| 26 | } |