Completed
Pull Request — master (#4)
by Jakub
14:22
created

base   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Test Coverage

Coverage 0%

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A will_display() 0 4 1
1
<?php
2
/**
3
 *
4
 * Advertisement management. An extension for the phpBB Forum Software package.
5
 *
6
 * @copyright (c) 2017 phpBB Limited <https://www.phpbb.com>
7
 * @license GNU General Public License, version 2 (GPL-2.0)
8
 *
9
 */
10
11
namespace phpbb\admanagement\location\type;
12
13
/**
14
* Base class for template location types
15
*/
16
abstract class base implements \phpbb\admanagement\location\type\type_interface
17
{
18
	/**
19
	* {@inheritDoc}
20
	*/
21
	public function will_display()
22
	{
23
		return true;
24
	}
25
}
26