Secret   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A init() 0 1 1
1
<?php
2
3
/**
4
 * @package Cadmium\System\Modules\Entitizer
5
 * @author Anton Romanov
6
 * @copyright Copyright (c) 2015-2017, Anton Romanov
7
 * @link http://cadmium-cms.com
8
 */
9
10
namespace Modules\Entitizer\Dataset\User {
11
12
	use Modules\Entitizer;
13
14
	class Secret extends Entitizer\Utils\Dataset {
15
16
		use Entitizer\Common\User\Secret;
17
18
		/**
19
		 * Initialize the dataset
20
		 */
21
22
		protected function init() {}
23
	}
24
}
25