| Conditions | 3 | 
| Paths | 2 | 
| Total Lines | 7 | 
| Code Lines | 4 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Tests | 0 | 
| CRAP Score | 12 | 
| Changes | 0 | ||
| 1 | <?php  | 
            ||
| 37 | public function search(SearchRequestInterface $searchRequest): SearchResultInterface  | 
            ||
| 38 |     { | 
            ||
| 39 | $hash = $this->getHash($searchRequest);  | 
            ||
| 40 |         if (isset($this->results[$hash]) && $this->results[$hash] instanceof SearchResultInterface) { | 
            ||
| 41 | return $this->results[$hash];  | 
            ||
| 42 | }  | 
            ||
| 43 | return $this->results[$hash] = $this->searchService->search($searchRequest);  | 
            ||
| 44 | }  | 
            ||
| 58 | 
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.