| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 24 | public function getMapRecords($mapUid, $nbLaps, $sort, $nbRecords) |
||
| 25 | { |
||
| 26 | $query = new RecordQuery(); |
||
| 27 | $query->filterByMapuid($mapUid); |
||
| 28 | $query->filterByNblaps($nbLaps); |
||
| 29 | $query->orderByScore($sort); |
||
| 30 | $query->limit($nbRecords); |
||
| 31 | |||
| 32 | return $query->find()->getData(); |
||
| 33 | } |
||
| 34 | |||
| 53 | } |