RoutineEntity   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 36
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 9
c 1
b 0
f 0
dl 0
loc 36
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 6 1
1
<?php
2
3
namespace Lagdo\DbAdmin\Driver\Entity;
4
5
class RoutineEntity
6
{
7
    /**
8
     * @var string
9
     */
10
    public $name = '';
11
12
    /**
13
     * @var string
14
     */
15
    public $specificName = '';
16
17
    /**
18
     * @var string
19
     */
20
    public $type = '';
21
22
    /**
23
     * @var string
24
     */
25
    public $dtd = '';
26
27
    /**
28
     * The constructor
29
     *
30
     * @param string $name
31
     * @param string $specificName
32
     * @param string $type
33
     * @param string $dtd
34
     */
35
    public function __construct(string $name, string $specificName, string $type, string $dtd)
36
    {
37
        $this->name = $name;
38
        $this->specificName = $specificName;
39
        $this->type = $type;
40
        $this->dtd = $dtd;
41
    }
42
}
43