Total Complexity | 3 |
Total Lines | 16 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | class m5_base_url_config extends \phpbb\db\migration\migration |
||
14 | { |
||
15 | public function effectively_installed() |
||
16 | { |
||
17 | return $this->config->offsetExists('ideas_base_url'); |
||
18 | } |
||
19 | |||
20 | public static function depends_on() |
||
21 | { |
||
22 | return array('\phpbb\ideas\migrations\m1_initial_schema'); |
||
23 | } |
||
24 | |||
25 | public function update_data() |
||
29 | ); |
||
30 | } |
||
31 | } |
||
32 |