Total Complexity | 1 |
Total Lines | 36 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
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) |
||
43 |