| Total Complexity | 8 |
| Total Lines | 58 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 12 | final class HistoryProvider implements ViewComponentProviderInterface |
||
| 13 | { |
||
| 14 | private const MAX_LIMIT = 10000; |
||
| 15 | |||
| 16 | private const LIMIT = 50; |
||
| 17 | |||
| 18 | private HistoryRepositoryInterface $historyRepository; |
||
| 19 | |||
| 20 | public function __construct( |
||
| 24 | } |
||
| 25 | |||
| 26 | public function setTemplateVariables(GameControllerInterface $game): void |
||
| 73 |