| Conditions | 3 | 
| Paths | 4 | 
| Total Lines | 10 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 0 | ||
| 1 | <?php | ||
| 49 | protected function configure() | ||
| 50 |     { | ||
| 51 |         if ($this->level === self::LOG_LEVEL_PROD) { | ||
|  | |||
| 52 | $this->bind(LoggerInterface::class)->to(ProdLogger::class); | ||
| 53 | } | ||
| 54 |         if ($this->level === self::LOG_LEVEL_DEV) { | ||
| 55 | $this->bind(LoggerInterface::class)->to(DevZeroLogger::class); | ||
| 56 | } | ||
| 57 | $this->bind(LoggerInterface::class)->to(DevOneLogger::class); | ||
| 58 | } | ||
| 59 | } | ||
| 60 |