Passed
Push — master ( c5754d...f173b7 )
by Darío
05:12
created

UserConnection   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 36
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 9
dl 0
loc 36
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 UserConnection extends Entity
8
{
9
	/**
10
	* @var integer
11
	*/
12
	public $USER_CONN_ID;
13
14
	/**
15
	* @var integer
16
	*/
17
	public $USER_ID;
18
19
	/**
20
	* @var integer
21
	*/
22
	public $CONN_TYPE_ID;
23
24
	/**
25
	* @var string
26
	*/
27
	public $CONNECTION_NAME;
28
29
	/**
30
	* @var string
31
	*/
32
	public $STATE;
33
34
	/**
35
	* @var date
0 ignored issues
show
Bug introduced by
The type Workarea\Model\date was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
36
	*/
37
	public $RECORD_DATE;
38
39
    public function __construct($data = [])
40
    {
41
    	parent::__construct($data);
42
        $this->setTableName("SWM_USER_CONNECTIONS");
43
    }
44
}