Variables::init()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 1
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 1
rs 10
c 0
b 0
f 0
cc 1
eloc 1
nc 1
nop 0
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