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