Variables   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

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

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\Collection {
11
12
	use Modules\Entitizer;
13
14
	trait Variables {
15
16
		# Collection configuration
17
18
		protected static $order_by = ['title' => 'ASC', 'id' => 'ASC'];
19
20
		/**
21
		 * Initialize the collection
22
		 */
23
24
		protected function init() {}
25
	}
26
}
27