RoundTime::__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 RoundTime {
5
  /** @var int $round_time_id The unique identifier for this round time */
6
  public $round_time_id;
7
8
  /** @var int $draft_id The unique identifier for the draft this round time belongs to */
9
  public $draft_id;
10
11
  /** @var bool $is_static_time Determines if this round time is for all rounds (static/true) or is specified per round (dynamic/false) */
12
  public $is_static_time;
13
14
  /** @var int $draft_round The round this round time is for. If $is_static_time is true, this should be null */
15
  public $draft_round;
16
17
  /** @var int $round_time_seconds Number of whole seconds this round time specifies */
18
  public $round_time_seconds;
19
20
  public function __construct() {
21
    //Leaving this here in case any init is needed on new round times
22
  }
23
}