for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace RestTemplate\Model;
/**
* Model that represents the DummyHex table
*
* @SWG\Definition(required={"field"}, type="object", @SWG\Xml(name="DummyHex"))
*/
class DummyHex
{
* The "fake" key
* @SWG\Property()
* @var string
protected $id;
* The UUID
protected $uuid;
* Some field property
protected $field;
* @return mixed
public function getId()
return $this->id;
}
* @param mixed $value
public function setId($value)
$this->id = $value;
* @return string
public function getUuid()
return $this->uuid;
* @param string $uuid
public function setUuid(string $uuid)
$this->uuid = $uuid;
public function getField()
return $this->field;
* @param mixed $field
public function setField($field)
$this->field = $field;