Display::hooks()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
cc 1
eloc 2
nc 1
nop 1
dl 0
loc 5
rs 10
c 0
b 0
f 0
ccs 0
cts 4
cp 0
crap 2
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