for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Mapado\RestClientSdk\Tests\Model\JsonLd;
/**
* Order Model
* @author Thomas di Luccio <[email protected]>
*/
class Order
{
* id
*
* @var mixed
* @access private
* @Rest\Id
* @Rest\Attribute(name="id", type="string")
private $id;
* Getter for id
* @return string
public function getId()
return $this->id;
}
* Setter for id
* @param string $id
* @return Order
public function setId($id)
$this->id = $id;
return $this;