for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace PlaygroundGame\Mapper;
use PlaygroundGame\Mapper\AbstractMapper;
class PostVoteShare extends AbstractMapper
{
public function getEntityRepository()
if (null === $this->er) {
$this->er = $this->em->getRepository('PlaygroundGame\Entity\PostVoteShare');
}
return $this->er;