Fix execute method

This commit is contained in:
James Brooks
2018-06-26 08:15:21 +01:00
parent e4d49510ba
commit 394cfe7a25

View File

@@ -171,6 +171,6 @@ if (!function_exists('execute')) {
*/ */
function execute($command) function execute($command)
{ {
app(Dispatcher::class)->execute($command); return app(Dispatcher::class)->dispatchNow($command);
} }
} }