ConnectionTypeField   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 26
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 7
dl 0
loc 26
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 ConnectionTypeField extends Entity
8
{
9
	/**
10
	* @var integer
11
	*/
12
	public $CONN_TYPE_ID;
13
14
	/**
15
	* @var integer
16
	*/
17
	public $CONN_IDENTI_ID;
18
19
	/**
20
	* @var string
21
	*/
22
	public $FIELD_NAME;
23
24
	/**
25
	* @var string
26
	*/
27
	public $PLACEHOLDER;
28
29
    public function __construct($data = [])
30
    {
31
    	parent::__construct($data);
32
        $this->setTableName("SWM_CONN_TYPE_FIELDS");
33
    }
34
}