ProPlayer::__construct()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 1
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 1
rs 10
c 0
b 0
f 0
cc 1
eloc 0
nc 1
nop 0
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
}