| Total Complexity | 1 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 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() { |
||
| 26 | } |