for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* document class for GravitonDyn\FileBundle\Document\FileMetadataAction
*/
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 ArchiveMetadataAction
{
* @var mixed $id
protected $id;
* @var \DateTime $deletedDate
protected $deletedDate;
* @var string $command
protected $command;
* 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;
* @return \DateTime
public function getDeleteddate()
return $this->deletedDate;
* Get command
* @return string $command
public function getCommand()
return $this->command;
* Set command
* @param string $command value for command
* @return self
public function setCommand($command)
$this->command = $command;
return $this;