Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
0.00% |
0 / 6 |
|
0.00% |
0 / 6 |
CRAP | |
0.00% |
0 / 1 |
| foo | |
0.00% |
0 / 6 |
|
0.00% |
0 / 6 |
42 | |
0.00% |
0 / 1 |
| depends_on | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| effectively_installed | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| update_schema | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| revert_schema | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| update_data | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| revert_data | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| 1 | <?php |
| 2 | |
| 3 | namespace vendor2\foo\migrations; |
| 4 | |
| 5 | class foo implements \phpbb\db\migration\migration_interface |
| 6 | { |
| 7 | /** |
| 8 | * {@inheritdoc} |
| 9 | */ |
| 10 | static public function depends_on() |
| 11 | { |
| 12 | return array(); |
| 13 | } |
| 14 | |
| 15 | /** |
| 16 | * {@inheritdoc} |
| 17 | */ |
| 18 | public function effectively_installed() |
| 19 | { |
| 20 | return false; |
| 21 | } |
| 22 | |
| 23 | /** |
| 24 | * {@inheritdoc} |
| 25 | */ |
| 26 | public function update_schema() |
| 27 | { |
| 28 | return array(); |
| 29 | } |
| 30 | |
| 31 | /** |
| 32 | * {@inheritdoc} |
| 33 | */ |
| 34 | public function revert_schema() |
| 35 | { |
| 36 | return array(); |
| 37 | } |
| 38 | |
| 39 | /** |
| 40 | * {@inheritdoc} |
| 41 | */ |
| 42 | public function update_data() |
| 43 | { |
| 44 | return array(); |
| 45 | } |
| 46 | |
| 47 | /** |
| 48 | * {@inheritdoc} |
| 49 | */ |
| 50 | public function revert_data() |
| 51 | { |
| 52 | return array(); |
| 53 | } |
| 54 | } |