Completed
Push — master ( 416cb1...222de5 )
by Anton
03:44
created

Variable   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2
Metric Value
wmc 1
lcom 0
cbo 2
dl 0
loc 8
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A implement() 0 1 1
1
<?php
2
3
namespace Modules\Entitizer\Entity {
4
5
	use Modules\Entitizer;
6
7
	class Variable extends Entitizer\Utils\Entity {
8
9
		use Entitizer\Common\Variable;
10
11
		# Implement entity
12
13
		protected function implement() {}
14
	}
15
}
16