Completed
Push — master ( c087ad...47fff7 )
by Benedikt
02:33
created

RankingSystemList::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 0
rs 10
1
<?php
2
declare(strict_types=1);
3
/**
4
 * Created by PhpStorm.
5
 * User: benedikt
6
 * Date: 1/5/18
7
 * Time: 10:54 PM
8
 */
9
10
namespace Tfboe\FmLib\Tests\Entity;
11
12
13
use Doctrine\ORM\Mapping as ORM;
14
use Tfboe\FmLib\Entity\Helpers\BaseEntity;
15
use Tfboe\FmLib\Entity\RankingSystemListInterface;
16
17
/**
18
 * Class RankingSystemList
19
 * @package Tfboe\FmLib\Entity
20
 * @ORM\Entity
21
 * @ORM\Table(name="rankingSystemLists")
22
 */
23
class RankingSystemList extends BaseEntity implements RankingSystemListInterface
24
{
25
  use \Tfboe\FmLib\Entity\Traits\RankingSystemList;
26
27
  /**
28
   * RankingSystem constructor.
29
   */
30
  public function __construct()
31
  {
32
    $this->init();
33
  }
34
}