m2_add_ucp_permissions   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 20
Duplicated Lines 70 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
wmc 2
lcom 0
cbo 0
dl 14
loc 20
rs 10
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
A update_data() 7 7 1
A revert_data() 7 7 1

How to fix   Duplicated Code   

Duplicated Code

Duplicate code is one of the most pungent code smells. A rule that is often used is to re-structure code once it is duplicated in three or more places.

Common duplication problems, and corresponding solutions are:

1
<?php
2
3
namespace florinp\messenger\migrations;
4
5
class m2_add_ucp_permissions extends \phpbb\db\migration\migration
6
{
7
8 View Code Duplication
	public function update_data()
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
9
	{
10
		return array(
11
		  array('permission.add', array('u_access_messenger')),
12
		  array('permission.permission_set', array('REGISTERED', 'u_access_messenger', 'group'))
13
		);
14
	}
15
16 View Code Duplication
	public function revert_data()
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
17
	{
18
		return array(
19
		  array('permission.permission_unset', array('REGISTERED', 'u_access_messenger', 'group')),
20
		  array('permission.remove', array('u_access_messenger'))
21
		);
22
	}
23
24
}
25