for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Docker\API\Model;
class Event
{
/**
* @var string
*/
protected $status;
protected $id;
protected $from;
* @var int
protected $time;
protected $timeNano;
* @return string
public function getStatus()
return $this->status;
}
* @param string $status
*
* @return self
public function setStatus($status = null)
$this->status = $status;
return $this;
public function getId()
return $this->id;
* @param string $id
public function setId($id = null)
$this->id = $id;
public function getFrom()
return $this->from;
* @param string $from
public function setFrom($from = null)
$this->from = $from;
* @return int
public function getTime()
return $this->time;
* @param int $time
public function setTime($time = null)
$this->time = $time;
public function getTimeNano()
return $this->timeNano;
* @param int $timeNano
public function setTimeNano($timeNano = null)
$this->timeNano = $timeNano;