ProPlayer   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 20
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 1
eloc 7
dl 0
loc 20
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 1 1
1
<?php
2
namespace PhpDraft\Domain\Entities;
3
4
class ProPlayer {
5
  /** @var int */
6
  public $pro_player_id;
7
8
  /** @var string Three character abbreviation of league player belongs to. NFL, NHL, MLB, NBA possible values */
9
  public $league;
10
11
  /** @var string */
12
  public $first_name;
13
14
  /** @var string */
15
  public $last_name;
16
17
  /** @var string Abbreviation of the position the player plays */
18
  public $position;
19
20
  /** @var string Abbreviation of the city of the team the player plays for */
21
  public $team;
22
23
  public function __construct() {
24
    //Leaving this empty
25
  }
26
}