for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Bankiru\Api\Doctrine\Test\Entity\Discriminator;
class InheritorSecond extends InheritorFirst
{
/** @var string */
private $second;
/**
* @return string
*/
public function getSecond()
return $this->second;
}