for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* document class for GravitonDyn\FileBundle\Document\FileLinks
*/
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 ArchiveLinks
{
* @var mixed $id
protected $id;
* @var MongoId $id
protected $realId;
* @var \DateTime $deletedDate
protected $deletedDate;
* @var string $type
protected $type;
* @var extref $ref
protected $ref;
* 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;
* Get type
* @return string $type
public function getType()
return $this->type;
* Set type
* @param string $type value for type
* @return self
public function setType($type)
$this->type = $type;
return $this;
* Get ref
* @return extref $ref
public function getRef()
return $this->ref;
* Set ref
* @param extref $ref value for ref
public function setRef($ref)
$this->ref = $ref;
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.