Completed
Push — master ( 854e3d...58e1a3 )
by Maik
01:38
created

src/Model/Metadata.php (6 issues)

Severity

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

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
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
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
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
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
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
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
}