| 1 | <?php |
||
| 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() |
||
| 51 | |||
| 52 | /** |
||
| 53 | * Set id |
||
| 54 | * |
||
| 55 | * @param mixed $id id |
||
| 56 | * |
||
| 57 | * @return void |
||
| 58 | */ |
||
| 59 | public function setId($id) |
||
| 63 | |||
| 64 | /** |
||
| 65 | * Get realId |
||
| 66 | * |
||
| 67 | * @return string $id |
||
|
|
|||
| 68 | */ |
||
| 69 | public function getRealId() |
||
| 73 | |||
| 74 | |||
| 75 | /** |
||
| 76 | * @return \DateTime |
||
| 77 | */ |
||
| 78 | public function getDeleteddate() |
||
| 82 | |||
| 83 | |||
| 84 | /** |
||
| 85 | * Get name |
||
| 86 | * |
||
| 87 | * @return string $name |
||
| 88 | */ |
||
| 89 | public function getName() |
||
| 93 | |||
| 94 | /** |
||
| 95 | * Set name |
||
| 96 | * |
||
| 97 | * @param string $name value for name |
||
| 98 | * |
||
| 99 | * @return self |
||
| 100 | */ |
||
| 101 | public function setName($name) |
||
| 107 | |||
| 108 | |||
| 109 | /** |
||
| 110 | * Get value |
||
| 111 | * |
||
| 112 | * @return string $value |
||
| 113 | */ |
||
| 114 | public function getValue() |
||
| 118 | |||
| 119 | /** |
||
| 120 | * Set value |
||
| 121 | * |
||
| 122 | * @param string $value value for value |
||
| 123 | * |
||
| 124 | * @return self |
||
| 125 | */ |
||
| 126 | public function setValue($value) |
||
| 132 | |||
| 133 | } |
||
| 134 |
This check compares the return type specified in the
@returnannotation of a function or method doc comment with the types returned by the function and raises an issue if they mismatch.