for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Kunstmaan\VotingBundle\Entity\UpDown;
use Doctrine\ORM\Mapping as ORM;
use Kunstmaan\VotingBundle\Entity\AbstractVote;
/**
* A standard up vote
*
* @ORM\Entity(repositoryClass="Kunstmaan\VotingBundle\Repository\UpDown\UpVoteRepository")
* @ORM\Table(name="kuma_voting_upvote")
*/
class UpVote extends AbstractVote
{
}