1 | <?php |
||
16 | class Connection extends \hiqdev\hiart\AbstractConnection |
||
17 | { |
||
18 | public $queryBuilderClass = QueryBuilder::class; |
||
19 | |||
20 | /** |
||
21 | * Method checks whether the response is an error |
||
22 | * |
||
23 | * @param ResponseInterface $response |
||
24 | * @return false|string the error text or boolean `false`, when the response is not an error |
||
25 | 2 | */ |
|
26 | public function getResponseError(ResponseInterface $response) |
||
36 | } |
||
37 |