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