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 PostVoteView extends AbstractMapper
{
public function getEntityRepository()
if (null === $this->er) {
$this->er = $this->em->getRepository('PlaygroundGame\Entity\PostVoteView');
}
return $this->er;