Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
30 | public function stats(DocumentManager $dm): Response |
||
31 | { |
||
32 | return $this->json([ |
||
33 | 'packages' => $dm->getRepository('App:Provider')->count(), |
||
34 | 'applications' => $dm->getRepository('App:Application')->count($this->getUser()), |
||
35 | 'weekly_downloads' => $dm->getRepository('App:Download')->countLast7Days(), |
||
36 | ]); |
||
39 |