Skip to content

Commit 362fb1a

Browse files
committed
Fix terminal hints
1 parent 47b12a8 commit 362fb1a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/config.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@
123123
return $colors;
124124
},
125125
OutputInterface::class => function (ContainerInterface $c) {
126-
return new StdOutput($c->get(Color::class), $c->get(TerminalInterface::class));
126+
return new StdOutput($c->get(Color::class), $c->get(Terminal::class));
127127
},
128128

129129
ExerciseRepository::class => function (ContainerInterface $c) {
@@ -307,7 +307,7 @@ function (CgiResult $result) use ($c) {
307307
return new ResultsRenderer(
308308
$c->get('appName'),
309309
$c->get(Color::class),
310-
$c->get(TerminalInterface::class),
310+
$c->get(Terminal::class),
311311
$c->get(ExerciseRepository::class),
312312
$c->get(KeyLighter::class),
313313
$c->get(ResultRendererFactory::class)

0 commit comments

Comments
 (0)