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

User   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
1
<?php
2
declare(strict_types=1);
3
/**
4
 * Created by PhpStorm.
5
 * User: benedikt
6
 * Date: 9/15/17
7
 * Time: 10:48 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\UserInterface;
16
17
/**
18
 * @ORM\Entity
19
 * @ORM\Table(name="users")
20
 */
21
class User extends BaseEntity implements UserInterface
22
{
23
  use \Tfboe\FmLib\Entity\Traits\User;
24
25
  /**
26
   * RankingSystem constructor.
27
   */
28
  public function __construct()
29
  {
30
    $this->init();
31
  }
32
}