| Total Complexity | 2 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Coverage | 60% |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 31 | class SolrCommunicationException extends \RuntimeException |
||
| 32 | { |
||
| 33 | |||
| 34 | /** |
||
| 35 | * @var ResponseAdapter |
||
| 36 | */ |
||
| 37 | protected $solrResponse; |
||
| 38 | |||
| 39 | /** |
||
| 40 | * @return ResponseAdapter |
||
| 41 | */ |
||
| 42 | public function getSolrResponse(): ResponseAdapter |
||
| 43 | { |
||
| 44 | return $this->solrResponse; |
||
| 45 | } |
||
| 46 | |||
| 47 | /** |
||
| 48 | 3 | * @param ResponseAdapter $solrResponse |
|
| 49 | */ |
||
| 50 | 3 | public function setSolrResponse(ResponseAdapter $solrResponse) |
|
| 53 | } |
||
| 54 | } |
||
| 55 |