for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Bankiru\Api\Doctrine\Test\Entity;
class CustomEntity
{
/** @var string */
private $id;
private $payload;
/**
* @return string
*/
public function getId()
return $this->id;
}
public function getPayload()
return $this->payload;