Skip to content

Commit d32e4b1

Browse files
committed
Style fixes
1 parent 633209f commit d32e4b1

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Collector/MessageJournal.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public function __construct(Formatter $formatter = null)
3737
public function addSuccess(RequestInterface $request, ResponseInterface $response)
3838
{
3939
$this->data['success'][] = [
40-
'request' => $this->formatter->formatRequest($request),
40+
'request' => $this->formatter->formatRequest($request),
4141
'response' => $this->formatter->formatResponse($response),
4242
];
4343
}
@@ -56,7 +56,7 @@ public function addFailure(RequestInterface $request, Exception $exception)
5656
}
5757

5858
$this->data['failure'][] = [
59-
'request' => $this->formatter->formatRequest($request),
59+
'request' => $this->formatter->formatRequest($request),
6060
'response' => $formattedResponse,
6161
];
6262
}

Tests/Unit/DependencyInjection/ConfigurationTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public function testEmptyConfiguration()
3838
],
3939
'clients' => [],
4040
'toolbar' => [
41-
'enabled' => 'auto',
41+
'enabled' => 'auto',
4242
'formatter' => null,
4343
],
4444
];
@@ -73,7 +73,7 @@ public function testSupportsAllConfigFormats()
7373
],
7474
'clients' => [],
7575
'toolbar' => [
76-
'enabled' => 'auto',
76+
'enabled' => 'auto',
7777
'formatter' => null,
7878
],
7979
];

0 commit comments

Comments
 (0)