UpVote
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 3
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 0
lcom 0
cbo 1
dl 0
loc 3
c 0
b 0
f 0
1
<?php
2
3
namespace Kunstmaan\VotingBundle\Entity\UpDown;
4
5
use Doctrine\ORM\Mapping as ORM;
6
use Kunstmaan\VotingBundle\Entity\AbstractVote;
7
8
/**
9
 * A standard up vote
10
 *
11
 * @ORM\Entity(repositoryClass="Kunstmaan\VotingBundle\Repository\UpDown\UpVoteRepository")
12
 * @ORM\Table(name="kuma_voting_upvote")
13
 */
14
class UpVote extends AbstractVote
15
{
16
}
17