| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 9 | 
| Code Lines | 7 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 0 | ||
| 1 | <?php | ||
| 26 | #[Override] | ||
| 27 | protected function configure(): void | ||
| 28 |     { | ||
| 29 | $this->rename(RouterInterface::class, 'original'); | ||
| 30 | $this->bind(RouterInterface::class)->to(CliRouter::class); | ||
| 31 | $this->bind(TransferInterface::class)->to(CliResponder::class); | ||
| 32 | $this->bind(HttpCacheInterface::class)->to(CliHttpCache::class); | ||
| 33 | $stdIn = tempnam(sys_get_temp_dir(), 'stdin-' . crc32(__FILE__)); | ||
| 34 | $this->bind()->annotatedWith(StdIn::class)->toInstance($stdIn); | ||
| 35 | } | ||
| 37 |