| Total Complexity | 1 |
| Total Lines | 14 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | class KeepAliveRetryTransportWrapper extends RetryTransportWrapper |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @const string |
||
| 11 | */ |
||
| 12 | const NO_RESPONSE = "Graylog-Server didn't answer properly, expected 'HTTP/1.x 202 Accepted', response is ''"; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @param HttpTransport $transport |
||
| 16 | */ |
||
| 17 | 4 | public function __construct(HttpTransport $transport) |
|
| 24 |