Skip to content

Commit eecc92b

Browse files
authored
Fix command resolving (#144)
1 parent 31d9486 commit eecc92b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Console/TinkerCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ protected function getCommands()
102102
$config = $this->getLaravel()->make('config');
103103

104104
foreach ($config->get('tinker.commands', []) as $command) {
105-
$commands[] = $this->getApplication()->resolve($command);
105+
$commands[] = $this->getLaravel()->resolve($command);
106106
}
107107

108108
return $commands;

0 commit comments

Comments
 (0)