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