laravel-google-custom-search-engine icon indicating copy to clipboard operation
laravel-google-custom-search-engine copied to clipboard

Call to undefined method getRawResults()

Open jayomayan opened this issue 6 years ago • 1 comments

I got this error when i use getRawResults() here's my code: $fulltext = new LaravelGoogleCustomSearchEngine(); // initialize $results = $fulltext->getResults('Startup Funding'); // get first 10 results for query 'some phrase' $rawResults = $fulltext->getRawResults();

here's the error: Symfony \ Component \ Debug \ Exception \ FatalThrowableError (E_ERROR) Call to undefined method JanDrda\LaravelGoogleCustomSearchEngine\LaravelGoogleCustomSearchEngine::getRawResults()

anyone knows how to fix this? Thanks in advance.

jayomayan avatar Oct 17 '18 23:10 jayomayan

The method is actually getRawResult() without the 's'

thedamilare avatar May 24 '21 12:05 thedamilare