Current File : /home/digitaw/www/wp-content/plugins/fluentform/app/Http/Controllers/GlobalSearchController.php
<?php

namespace FluentForm\App\Http\Controllers;


use FluentForm\App\Services\GlobalSearchService;

class GlobalSearchController extends Controller
{
    /**
     * Get the search links.
     *
     * @param  \FluentForm\App\Services\GlobalSearchService $globalSearchService
     * @return \WP_REST_Response
     */
    public function index(GlobalSearchService $globalSearchService)
    {
        return $this->sendSuccess(
            $globalSearchService->get()
        );
    }


}