Conditions | 1 |
Paths | 1 |
Total Lines | 23 |
Code Lines | 14 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
19 | $qb |
||
20 | ->select('DATE(u.createdAt) as date', 'count(u.id) as user_total') |
||
21 | ->from($from, 'u') |
||
22 | ; |
||
23 | |||
24 | $this->queryFilter->addTimePeriod($configuration, 'createdAt'); |
||
25 | $this->queryFilter->addChannel($configuration); |
||
26 | $this->queryFilter->addUserGender($configuration); |
||
27 | } |
||
28 | |||
29 | /** |
||
30 | * {@inheritdoc} |
||
31 | */ |
||
32 | public function getType(): string |
||
33 | { |
||
34 | return UserRegistrationType::class; |
||
35 | } |
||
36 | } |
||
37 |