Test Setup Failed
Push — zf3-version ( 7b362e...3b9e5b )
by Diego
03:08
created

IndicatorTransactionScript   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
1
<?php
2
3
namespace Api\Model;
4
5
use Zend\Db\Adapter\AdapterInterface;
6
use Api\Helper\Utils;
7
8
class IndicatorTransactionScript
9
{
10
	
11
	function __construct()
0 ignored issues
show
Best Practice introduced by
It is generally recommended to explicitly declare the visibility for methods.

Adding explicit visibility (private, protected, or public) is generally recommend to communicate to other developers how, and from where this method is intended to be used.

Loading history...
12
	{
13
		# code...
14
	}
15
}