for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* document class for GravitonDyn\FileBundle\Document\FileMetadataAdditionalPropertiesEmbedded
*/
namespace Graviton\ArchiveBundle\Document;
* @author List of contributors <https://github.com/libgraviton/graviton/graphs/contributors>
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
* @link http://swisscom.ch
class ArchiveMetadataAdditionalProperties
{
* @var mixed $id
protected $id;
* @var \MongoId $id
protected $realId;
* @var \DateTime $deletedDate
protected $deletedDate;
* @var string $name
protected $name;
* @var string $value
protected $value;
* Get id
*
* @return string $id
public function getId()
return $this->id;
}
* Set id
* @param mixed $id id
* @return void
public function setId($id)
$this->id = $id;
* Get realId
\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.
@return
public function getRealId()
return $this->realId;
* @return \DateTime
public function getDeleteddate()
return $this->deletedDate;
* Get name
* @return string $name
public function getName()
return $this->name;
* Set name
* @param string $name value for name
* @return self
public function setName($name)
$this->name = $name;
return $this;
* Get value
* @return string $value
public function getValue()
return $this->value;
* Set value
* @param string $value value for value
public function setValue($value)
$this->value = $value;
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.