Metadata
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 38
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
wmc 0
lcom 0
cbo 0
dl 0
loc 38
c 0
b 0
f 0
1
<?php
2
namespace Nkey\DDG\API\Model;
3
4
/**
5
 * Model for Meta data property - currently not used
6
 *
7
 * @author Maik Greubel <[email protected]>
8
 */
9
class Metadata
10
{
11
    /**
12
     * 
13
     * @var array
14
     */
15
    private $maintainer;
0 ignored issues
show
Unused Code introduced by
The property $maintainer is not used and could be removed.

This check marks private properties in classes that are never used. Those properties can be removed.

Loading history...
16
    
17
    /**
18
     * 
19
     * @var string
20
     */
21
    private $perl_module;
0 ignored issues
show
Unused Code introduced by
The property $perl_module is not used and could be removed.

This check marks private properties in classes that are never used. Those properties can be removed.

Loading history...
22
    
23
    /**
24
     * 
25
     * @var string
26
     */
27
    private $status;
0 ignored issues
show
Unused Code introduced by
The property $status is not used and could be removed.

This check marks private properties in classes that are never used. Those properties can be removed.

Loading history...
28
    
29
    /**
30
     * 
31
     * @var string
32
     */
33
    private $production_state;
0 ignored issues
show
Unused Code introduced by
The property $production_state is not used and could be removed.

This check marks private properties in classes that are never used. Those properties can be removed.

Loading history...
34
    
35
    /**
36
     * 
37
     * @var string
38
     */
39
    private $dev_date;
0 ignored issues
show
Unused Code introduced by
The property $dev_date is not used and could be removed.

This check marks private properties in classes that are never used. Those properties can be removed.

Loading history...
40
    
41
    /**
42
     * 
43
     * @var string
44
     */
45
    private $js_callback_name;
0 ignored issues
show
Unused Code introduced by
The property $js_callback_name is not used and could be removed.

This check marks private properties in classes that are never used. Those properties can be removed.

Loading history...
46
}