| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 21 | public function __construct( |
||
| 22 | $name, |
||
| 23 | array $variables, |
||
| 24 | float $maxUpdateFrequency = 0.25, |
||
| 25 | WidgetFactoryContext $context, |
||
| 26 | VoteService $voteService, |
||
| 27 | Group $allPlayers |
||
| 28 | ) { |
||
| 29 | parent::__construct($name, $variables, $maxUpdateFrequency, $context); |
||
| 30 | $this->allPlayers = $allPlayers; |
||
| 31 | } |
||
| 32 | |||
| 50 | } |