Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
21 | public function setTemplateVariables(GameControllerInterface $game): void |
||
22 | { |
||
23 | $user = $game->getUser(); |
||
24 | |||
25 | $game->setTemplateVar( |
||
26 | 'RESEARCH_LIST', |
||
27 | $this->techlistRetriever->getResearchList($user) |
||
28 | ); |
||
29 | $game->setTemplateVar( |
||
30 | 'RESEARCHED_LIST', |
||
31 | $this->techlistRetriever->getResearchedList($user) |
||
32 | ); |
||
35 |