File "GlobalSearchController.php"
Full Path: /home/romayxjt/public_html/wp-content/plugins/fluentform/app/Http/Controllers/GlobalSearchController.php
File size: 488 bytes
MIME-type: text/x-php
Charset: utf-8
<?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()
);
}
}