DepthChartDisplayModel::__construct()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 4
dl 0
loc 5
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 4
1
<?php
2
namespace PhpDraft\Domain\Models;
3
4
class DepthChartDisplayModel {
5
  public function __construct($depth_chart_position_id, $position, $slots, $picks) {
6
    $this->depth_chart_position_id = $depth_chart_position_id;
7
    $this->position = $position;
8
    $this->slots = $slots;
9
    $this->picks = $picks;
10
  }
11
12
  public $depth_chart_position_id;
13
  public $position;
14
  public $slots;
15
  public $picks;
16
}