Total Complexity | 3 |
Total Lines | 45 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
16 | class m7_default_exemption_schema extends \phpbb\db\migration\migration |
||
|
|||
17 | { |
||
18 | /** |
||
19 | * Assign migration file dependencies for this migration |
||
20 | * |
||
21 | * @return array Array of migration files |
||
22 | * @static |
||
23 | * @access public |
||
24 | */ |
||
25 | public static function depends_on() |
||
26 | { |
||
27 | return array('\phpbb\autogroups\migrations\v10x\m1_initial_schema'); |
||
28 | } |
||
29 | |||
30 | /** |
||
31 | * Add table columns schema to the database: |
||
32 | * groups: |
||
33 | * autogroup_default_exempt |
||
34 | * |
||
35 | * @return array Array of table columns schema |
||
36 | * @access public |
||
37 | */ |
||
38 | public function update_schema() |
||
44 | ), |
||
45 | ), |
||
46 | ); |
||
47 | } |
||
48 | |||
49 | /** |
||
50 | * Drop table columns schema from the database |
||
51 | * |
||
52 | * @return array Array of table columns schema |
||
53 | * @access public |
||
54 | */ |
||
55 | public function revert_schema() |
||
66 |
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"]
, you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths