1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-08-05 12:47:39 +02:00

ElasticsearchHandler indentation fixes

This commit is contained in:
Karolis
2019-12-07 10:11:40 +00:00
parent c8cd53dc0f
commit 33794125e3

View File

@@ -164,28 +164,26 @@ class ElasticsearchHandler extends AbstractProcessingHandler
* *
* @param array $responses returned by $this->client->bulk() * @param array $responses returned by $this->client->bulk()
*/ */
protected function createExceptionFromResponses(array $responses): ElasticsearchRuntimeException protected function createExceptionFromResponses(array $responses): ElasticsearchRuntimeException
{ {
foreach ($responses['items'] ?? [] as $item) { foreach ($responses['items'] ?? [] as $item) {
if (isset($item['index']['error'])) { if (isset($item['index']['error'])) {
return $this->createExceptionFromError($item['index']['error']); return $this->createExceptionFromError($item['index']['error']);
} }
} }
return new ElasticsearchRuntimeException('Elasticsearch failed to index one or more records.'); return new ElasticsearchRuntimeException('Elasticsearch failed to index one or more records.');
} }
/** /**
* Creates elasticsearch exception from error array * Creates elasticsearch exception from error array
* *
* @param array $error * @param array $error
*/ */
protected function createExceptionFromError(array $error): ElasticsearchRuntimeException protected function createExceptionFromError(array $error): ElasticsearchRuntimeException
{ {
$previous = isset($error['caused_by']) ? $this->createExceptionFromError($error['caused_by']) : null; $previous = isset($error['caused_by']) ? $this->createExceptionFromError($error['caused_by']) : null;
return new ElasticsearchRuntimeException($error['type'] . ': ' . $error['reason'], 0, $previous); return new ElasticsearchRuntimeException($error['type'] . ': ' . $error['reason'], 0, $previous);
} }
} }