| Conditions | 2 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 29 | public function get(array $identifier) |
||
| 30 | { |
||
| 31 | $data = $this->delegate->get($identifier); |
||
| 32 | |||
| 33 | $this->logger->debug( |
||
| 34 | sprintf('Entity cache %s', null === $data ? 'HIT' : 'MISS'), |
||
| 35 | ['class' => $this->getMetadata()->getName(), 'identifiers' => $identifier] |
||
| 36 | ); |
||
| 37 | |||
| 38 | return $data; |
||
| 39 | } |
||
| 40 | |||
| 58 |