| Total Complexity | 2 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Coverage | 50% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 32 | class SolrCommunicationException extends \RuntimeException { |
||
| 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 | * @param ResponseAdapter $solrResponse |
||
| 49 | */ |
||
| 50 | 5 | public function setSolrResponse(ResponseAdapter $solrResponse) |
|
| 53 | } |
||
| 54 | } |