Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
11.11% |
1 / 9 |
|
11.11% |
1 / 9 |
CRAP | |
0.00% |
0 / 1 |
| phpbb_mock_migrator | |
11.11% |
1 / 9 |
|
11.11% |
1 / 9 |
65.89 | |
0.00% |
0 / 1 |
| __construct | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
| load_migration_state | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| update | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| revert | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| unfulfillable | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| finished | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| migration_state | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| populate_migrations | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| create_migrations_table | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| 1 | <?php |
| 2 | /** |
| 3 | * |
| 4 | * This file is part of the phpBB Forum Software package. |
| 5 | * |
| 6 | * @copyright (c) phpBB Limited <https://www.phpbb.com> |
| 7 | * @license GNU General Public License, version 2 (GPL-2.0) |
| 8 | * |
| 9 | * For full copyright and license information, please see |
| 10 | * the docs/CREDITS.txt file. |
| 11 | * |
| 12 | */ |
| 13 | |
| 14 | class phpbb_mock_migrator extends \phpbb\db\migrator |
| 15 | { |
| 16 | public function __construct() |
| 17 | { |
| 18 | } |
| 19 | |
| 20 | public function load_migration_state() |
| 21 | { |
| 22 | } |
| 23 | |
| 24 | public function update() |
| 25 | { |
| 26 | } |
| 27 | |
| 28 | public function revert($migration) |
| 29 | { |
| 30 | } |
| 31 | |
| 32 | public function unfulfillable($name) |
| 33 | { |
| 34 | } |
| 35 | |
| 36 | public function finished() |
| 37 | { |
| 38 | } |
| 39 | |
| 40 | public function migration_state($migration) |
| 41 | { |
| 42 | } |
| 43 | |
| 44 | public function populate_migrations($migrations) |
| 45 | { |
| 46 | } |
| 47 | |
| 48 | public function create_migrations_table() |
| 49 | { |
| 50 | } |
| 51 | } |