diff --git a/src/Console/TinkerCommand.php b/src/Console/TinkerCommand.php index 854fb13..95d4c09 100644 --- a/src/Console/TinkerCommand.php +++ b/src/Console/TinkerCommand.php @@ -102,7 +102,9 @@ protected function getCommands() $config = $this->getLaravel()->make('config'); foreach ($config->get('tinker.commands', []) as $command) { - $commands[] = $this->getLaravel()->make($command); + $commands[] = $this->getApplication()->add( + $this->getLaravel()->make($command) + ); } return $commands;