Total Complexity | 3 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Coverage | 80% |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
15 | class Connection extends \hiqdev\hiart\AbstractConnection |
||
16 | { |
||
17 | public $queryBuilderClass = QueryBuilder::class; |
||
18 | |||
19 | /** |
||
20 | * Method checks whether the response is an error. |
||
21 | * |
||
22 | * @param ResponseInterface $response |
||
23 | * @return false|string the error text or boolean `false`, when the response is not an error |
||
24 | */ |
||
25 | 2 | public function getResponseError(ResponseInterface $response) |
|
35 |