Open5

awesome-laravelに載っているCodebaseなオープンソースプロジェクトを読む

meijinmeijin

executeっていう独自ヘルパなら見つかったけど・・・

if (!function_exists('execute')) {
    /**
     * Send the given command to the dispatcher for execution.
     *
     * @param object $command
     *
     * @return void
     */
    function execute($command)
    {
        return app(Dispatcher::class)->dispatchNow($command);
    }
}