Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
53 | public function onSet($key, $entry) |
||
54 | { |
||
55 | $logEntry = new LogEntry( |
||
56 | new DateTimeImmutable(date('Y-m-d H:i:s'), new DateTimeZone('UTC')), |
||
57 | LogEntry::SEVERITY_INFO, |
||
58 | 'Cache Entry with key '.$key.' was set into cache pool' |
||
59 | ); |
||
60 | |||
61 | $this->logger->log($logEntry); |
||
62 | |||
63 | return $entry; |
||
64 | } |
||
66 |