GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.

topictags_info   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 32
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 0
dl 0
loc 32
ccs 0
cts 29
cp 0
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A module() 0 29 1
1
<?php
2
/**
3
*
4
* @package phpBB Extension - RH Topic Tags
5
* @copyright (c) 2014 Robet Heim
6
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
7
*
8
*/
9
10
namespace robertheim\topictags\acp;
11
12
class topictags_info
13
{
14
	public function module()
15
	{
16
		return array(
17
			'filename'	=> '\robertheim\topictags\acp\topictags_module',
18
			'title'		=> 'ACP_TOPICTAGS_TITLE',
19
			'modes'		=> array(
20
				'settings'	=> array(
21
					'title' => 'ACP_TOPICTAGS_SETTINGS',
22
					'auth' => 'ext_robertheim/topictags && acl_a_board',
23
					'cat' => array('ACP_TOPICTAGS_TITLE')
24
				),
25
				'whitelist'	=> array(
26
					'title' => 'ACP_TOPICTAGS_WHITELIST',
27
					'auth' => 'ext_robertheim/topictags && acl_a_board',
28
					'cat' => array('ACP_TOPICTAGS_TITLE')
29
				),
30
				'blacklist'	=> array(
31
					'title' => 'ACP_TOPICTAGS_BLACKLIST',
32
					'auth' => 'ext_robertheim/topictags && acl_a_board',
33
					'cat' => array('ACP_TOPICTAGS_TITLE')
34
				),
35
				'tags'	=> array(
36
					'title' => 'ACP_TOPICTAGS_MANAGE_TAGS',
37
					'auth' => 'ext_robertheim/topictags && acl_a_board',
38
					'cat' => array('ACP_TOPICTAGS_TITLE')
39
				),
40
			),
41
		);
42
	}
43
}
44