| Total Complexity | 3 |
| Total Lines | 25 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 21 | class ext extends base |
||
| 22 | { |
||
| 23 | /** @var string Require phpBB v3.3.4 due to events. */ |
||
| 24 | const PHPBB_MIN_3_3_X = '3.3.4'; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * {@inheritdoc} |
||
| 28 | */ |
||
| 29 | public function is_enableable() |
||
| 30 | { |
||
| 31 | return $this->pbpbb_ver_chk(); |
||
| 32 | } |
||
| 33 | |||
| 34 | /** |
||
| 35 | * phpBB Version Check. |
||
| 36 | * |
||
| 37 | * @return bool |
||
| 38 | */ |
||
| 39 | private function pbpbb_ver_chk() |
||
| 46 | } |
||
| 47 | } |
||
| 48 |