Completed
Pull Request — master (#90)
by Matt
01:22
created

ext   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 0
dl 0
loc 10
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A is_enableable() 0 4 1
1
<?php
2
/**
3
 *
4
 * Google Analytics extension for the phpBB Forum Software package.
5
 *
6
 * @copyright (c) 2021 phpBB Limited <https://www.phpbb.com>
7
 * @license GNU General Public License, version 2 (GPL-2.0)
8
 *
9
 */
10
11
namespace phpbb\googleanalytics;
12
13
use phpbb\extension\base;
14
15
class ext extends base
16
{
17
	/**
18
	 * {@inheritDoc}
19
	 */
20
	public function is_enableable()
21
	{
22
		return phpbb_version_compare(PHPBB_VERSION, '3.2.0', '>=');
23
	}
24
}
25