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