Passed
Push — master ( c5754d...1955b9 )
by Darío
07:59 queued 02:30
created

UserConnectionDetails   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 21
Duplicated Lines 0 %

Importance

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