Passed
Push — master ( a532fe...5ccf6a )
by Petr
03:21
created

Organizer::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 7
Code Lines 5

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
dl 0
loc 7
c 0
b 0
f 0
rs 9.4285
ccs 0
cts 6
cp 0
cc 1
eloc 5
nc 1
nop 2
crap 2
1
<?php
2
3
namespace AppBundle\Entity;
4
5
use AppBundle\Entity\Infrasctucture\Ambassador;
6
use Doctrine\ORM\Mapping as ORM;
7
8
/**
9
 * Organizer
10
 * @ORM\Table(name="organizers")
11
 * @ORM\Entity(repositoryClass="AppBundle\Entity\Repository\OrganizerRepository")
12
 */
13
class Organizer extends Ambassador
14
{
15
16
}
17
18