DepthChartPositionCreateModel   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 1
eloc 5
dl 0
loc 8
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
1
<?php
2
namespace PhpDraft\Domain\Models;
3
4
class DepthChartPositionCreateModel {
5
  public function __construct() {
6
    $this->positions = array();
7
    $this->depthChartEnabled = false;
8
  }
9
10
  public $positions;
11
  public $depthChartEnabled;
12
}