Conditions | 2 |
Paths | 2 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 2.0116 |
Changes | 0 |
1 | <?php |
||
30 | 6 | public function logRequest($url, \DateTime $date = null) |
|
31 | { |
||
32 | 6 | if (null === $date) { |
|
33 | $date = new \DateTime(); |
||
34 | } |
||
35 | |||
36 | 6 | $timestamp = $date->getTimestamp(); |
|
37 | 6 | $hashKey = $this->getHashKey($timestamp, $url); |
|
38 | |||
39 | 6 | $this->redis->zAdd($this->key, $timestamp, $hashKey); |
|
40 | 6 | } |
|
41 | |||
71 |