iMattPro /
similartopics
| 1 | <?php |
||||
| 2 | /** |
||||
| 3 | * |
||||
| 4 | * Precise Similar Topics |
||||
| 5 | * |
||||
| 6 | * @copyright (c) 2018 Matt Friedman |
||||
| 7 | * @license GNU General Public License, version 2 (GPL-2.0) |
||||
| 8 | * |
||||
| 9 | */ |
||||
| 10 | |||||
| 11 | namespace vse\similartopics; |
||||
| 12 | |||||
| 13 | class ext extends \phpbb\extension\base |
||||
|
0 ignored issues
–
show
|
|||||
| 14 | { |
||||
| 15 | public function is_enableable() |
||||
| 16 | { |
||||
| 17 | $db = $this->container->get('dbal.conn'); |
||||
| 18 | $enableable = in_array($db->get_sql_layer(), array('mysqli', 'mysql4', 'postgres')); |
||||
| 19 | |||||
| 20 | if (!$enableable && phpbb_version_compare(PHPBB_VERSION, '3.3.0-b1', '>=')) |
||||
|
0 ignored issues
–
show
The function
phpbb_version_compare was not found. Maybe you did not declare it correctly or list all dependencies?
(
Ignorable by Annotation
)
If this is a false-positive, you can also ignore this issue in your code via the
Loading history...
|
|||||
| 21 | { |
||||
| 22 | $lang = $this->container->get('language'); |
||||
| 23 | $lang->add_lang('acp_similar_topics', 'vse/similartopics'); |
||||
| 24 | return array($lang->lang('PST_NO_COMPAT')); |
||||
| 25 | } |
||||
| 26 | |||||
| 27 | return $enableable; |
||||
| 28 | } |
||||
| 29 | } |
||||
| 30 |
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