-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathRequest.php
More file actions
32 lines (29 loc) · 759 Bytes
/
Request.php
File metadata and controls
32 lines (29 loc) · 759 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?php
class Request
{
public $hittersInput;
public $pitchersInput;
public $numberOfPlayersDrafted = 0;
public $dataset = "11C";
public $customId = "";
public $keeperId = "";
public $numberOfTeams = 12;
public $moneyPerTeam = 260;
public $minimumBid = 1;
public $league = "MLB";
public $adjustPlayingTime = true;
public $useTopPosition = false;
public $useCustomSplit = false;
public $outputAsCSV = false;
public $outputAsSimpleCSV = false;
public $hittersSplit = 70;
public $pitchersSplit = 30;
public $updatedProjections = false;
public $restOfSeasonProjections = false;
function __construct()
{
$hittersInput = new PlayersInput();
$pitchersInput = new PlayersInput();
}
}
?>