| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 36 | public function getDownloadsLastDay() |
||
| 37 | { |
||
| 38 | $resource = $this->repository->getResourceByPath( |
||
| 39 | '/downloads/point/last-day/' . $this->package |
||
| 40 | ); |
||
| 41 | |||
| 42 | $resourceArray = json_decode($resource); |
||
| 43 | |||
| 44 | return new DownloadStatistics( |
||
| 45 | $this->package, |
||
| 46 | $resourceArray->downloads, |
||
| 47 | new Chronos($resourceArray->start), |
||
| 48 | new Chronos($resourceArray->end) |
||
| 49 | ); |
||
| 51 | } |