Blame view
app/Queries/Predictor/Summary.php
596 Bytes
e77200db5 Initial commit |
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 33 34 35 36 37 38 39 |
<?php namespace FootyRoom\Queries\Predictor; class Summary { /** @var int */ public $userId; /** @var string */ public $username; /** @var string */ public $phase; /** @var int */ public $rank = 0; /** @var int */ public $stake = 0; /** @var int */ public $win = 0; /** @var int */ public $profit = 0; /** @var int */ public $locked = 0; /** @var int */ public $correct = 0; /** @var int */ public $predictions = 0; /** @var \FootyRoom\Queries\Predictor\Player|null */ public $overall; } |