Completed
Push — feature/EVO-8294-file-upload-r... ( ebbdfa )
by
unknown
63:34
created

getDeleteddate()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
c 0
b 0
f 0
dl 0
loc 4
rs 10
cc 1
eloc 2
nc 1
nop 0
1
<?php
2
/**
3
 * document class for GravitonDyn\FileBundle\Document\FileMetadataAdditionalPropertiesEmbedded
4
 */
5
6
namespace Graviton\ArchiveBundle\Document;
7
8
/**
9
 * @author   List of contributors <https://github.com/libgraviton/graviton/graphs/contributors>
10
 * @license  http://opensource.org/licenses/gpl-license.php GNU Public License
11
 * @link     http://swisscom.ch
12
 */
13
class ArchiveMetadataAdditionalProperties
14
{
15
16
    /**
17
     * @var mixed $id
18
     */
19
    protected $id;
20
21
    /**
22
     * @var \MongoId $id
23
     */
24
    protected $realId;
25
26
    /**
27
     * @var \DateTime $deletedDate
28
     */
29
    protected $deletedDate;
30
31
32
    /**
33
     * @var string $name
34
     */
35
    protected $name;
36
37
    /**
38
     * @var string $value
39
     */
40
    protected $value;
41
42
    /**
43
     * Get id
44
     *
45
     * @return string $id
46
     */
47
    public function getId()
48
    {
49
        return $this->id;
50
    }
51
52
    /**
53
     * Set id
54
     *
55
     * @param mixed $id id
56
     *
57
     * @return void
58
     */
59
    public function setId($id)
60
    {
61
        $this->id = $id;
62
    }
63
64
    /**
65
     * Get realId
66
     *
67
     * @return string $id
0 ignored issues
show
Documentation introduced by
Should the return type not be \MongoId?

This check compares the return type specified in the @return annotation of a function or method doc comment with the types returned by the function and raises an issue if they mismatch.

Loading history...
68
     */
69
    public function getRealId()
70
    {
71
        return $this->realId;
72
    }
73
74
75
    /**
76
     * @return \DateTime
77
     */
78
    public function getDeleteddate()
79
    {
80
        return $this->deletedDate;
81
    }
82
83
84
    /**
85
     * Get name
86
     *
87
     * @return string $name
88
     */
89
    public function getName()
90
    {
91
        return $this->name;
92
    }
93
94
    /**
95
     * Set name
96
     *
97
     * @param string $name value for name
98
     *
99
     * @return self
100
     */
101
    public function setName($name)
102
    {
103
        $this->name = $name;
104
105
        return $this;
106
    }
107
108
109
    /**
110
     * Get value
111
     *
112
     * @return string $value
113
     */
114
    public function getValue()
115
    {
116
        return $this->value;
117
    }
118
119
    /**
120
     * Set value
121
     *
122
     * @param string $value value for value
123
     *
124
     * @return self
125
     */
126
    public function setValue($value)
127
    {
128
        $this->value = $value;
129
130
        return $this;
131
    }
132
133
}
134