| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 35 | public function setLogger(LoggerInterface $logger) |
||
| 36 | { |
||
| 37 | $this->logger = $logger; |
||
| 38 | |||
| 39 | // What are we logging with? |
||
| 40 | $this->logger->debug(\sprintf( |
||
| 41 | 'Class `%s` configured to use `%s`.', |
||
| 42 | Types::getClassOrType($this), |
||
| 43 | Types::getClassOrType($this->logger) |
||
| 44 | )); |
||
| 45 | |||
| 46 | return $this; |
||
| 47 | } |
||
| 48 | |||
| 59 |