Completed
Push — master ( 685463...a3ac99 )
by Benedikt
13:47
created

Game   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 16
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Importance

Changes 0
Metric Value
dl 0
loc 16
c 0
b 0
f 0
rs 10
wmc 1
lcom 0
cbo 2

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 5 1
1
<?php
2
declare(strict_types=1);
3
/**
4
 * Created by PhpStorm.
5
 * User: benedikt
6
 * Date: 1/28/18
7
 * Time: 11:38 PM
8
 */
9
10
namespace Tfboe\FmLib\Tests\Entity;
11
12
use Doctrine\ORM\Mapping as ORM;
13
use Tfboe\FmLib\Entity\GameInterface;
14
use Tfboe\FmLib\Entity\Helpers\TournamentHierarchyEntity;
15
16
/**
17
 * Class Game
18
 * @package Tfboe\FmLib\Tests\Entity
19
 * @ORM\Entity
20
 * @ORM\Table(name="games")
21
 */
22
class Game extends TournamentHierarchyEntity implements GameInterface
23
{
24
  use \Tfboe\FmLib\Entity\Traits\Game;
25
26
//<editor-fold desc="Constructor">
27
28
  /**
29
   * Game constructor.
30
   */
31
  public function __construct()
32
  {
33
    parent::__construct();
34
    $this->init();
35
  }
36
//</editor-fold desc="Constructor">
37
}