Identifiers   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 16
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 5
dl 0
loc 16
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
1
<?php
2
3
namespace Workarea\Model;
4
5
use Drone\Db\Entity;
6
7
class Identifiers extends Entity
8
{
9
	/**
10
	* @var integer
11
	*/
12
	public $CONN_IDENTI_ID;
13
14
	/**
15
	* @var string
16
	*/
17
	public $CONN_IDENTI_NAME;
18
19
    public function __construct($data = [])
20
    {
21
    	parent::__construct($data);
22
        $this->setTableName("SWM_CONN_IDENTIFIERS");
23
    }
24
}