Conditions | 1 |
Paths | 1 |
Total Lines | 19 |
Code Lines | 16 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
12 | public function getData(): array |
||
13 | { |
||
14 | $query = $this->em->createQuery( |
||
15 | " |
||
16 | SELECT p.id, |
||
17 | p.chartRank0, |
||
18 | p.chartRank1, |
||
19 | p.chartRank2, |
||
20 | p.chartRank3, |
||
21 | p.pointChart, |
||
22 | p.rankPointChart, |
||
23 | p.rankMedal, |
||
24 | p.nbChart, |
||
25 | p.pointGame, |
||
26 | p.rankPointGame |
||
27 | FROM VideoGamesRecords\CoreBundle\Entity\Player p |
||
28 | WHERE p.id <> 0" |
||
29 | ); |
||
30 | return $query->getResult(); |
||
|
|||
31 | } |
||
85 |