Passed
Push — 0.3.0 ( 0d73f1...9a02d7 )
by Anton
04:10
created

Variables::init()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 1
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 1
rs 10
cc 1
eloc 1
nc 1
nop 0
1
<?php
2
3
namespace Modules\Entitizer\Collection {
4
5
	use Modules\Entitizer;
6
7
	trait Variables {
8
9
		protected static $order_by = ['title' => 'ASC', 'id' => 'ASC'];
10
11
		# Init collection
12
13
		protected function init() {}
14
	}
15
}
16