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

Variables   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 1
c 1
b 0
f 0
lcom 0
cbo 0
dl 0
loc 8
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A init() 0 1 1
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