Display   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A hooks() 0 5 1
1
<?php
2
3
/**
4
 * This file contains the integration of mentions into \ElkArte\Controller\Display.
5
 *
6
 * @package   ElkArte Forum
7
 * @copyright ElkArte Forum contributors
8
 * @license   BSD http://opensource.org/licenses/BSD-3-Clause (see accompanying LICENSE.txt file)
9
 *
10
 * @version 2.0 dev
11
 *
12
 */
13
14
namespace ElkArte\Modules\Mentions;
15
16
use ElkArte\EventManager;
17
18
/**
19
 * Class \ElkArte\Modules\Mentions\Display
20
 *
21
 * @package Mentions
22
 */
23
class Display extends AbstractMentions
24
{
25
	/**
26
	 * {@inheritDoc}
27
	 */
28
	public static function hooks(EventManager $eventsManager)
29
	{
30
		self::registerHooks('display', $eventsManager);
31
32
		return [];
33
	}
34
}
35