Total Complexity | 3 |
Total Lines | 32 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
23 | class WhatsNewMapper extends QBMapper |
||
24 | { |
||
25 | public const TABLE_NAME = 'analytics_whats_new'; |
||
26 | private $logger; |
||
27 | |||
28 | public function __construct( |
||
29 | ILogger $logger, |
||
30 | IDBConnection $db |
||
31 | ) |
||
32 | { |
||
33 | parent::__construct($db, self::TABLE_NAME); |
||
34 | $this->logger = $logger; |
||
35 | } |
||
36 | |||
37 | /** |
||
38 | * @throws DoesNotExistException |
||
39 | */ |
||
40 | public function getChanges(string $version): WhatsNewResult |
||
55 | } |
||
56 | } |