Skip to content

Commit 87354a6

Browse files
committed
Apply fixes from StyleCI
1 parent c8fbb77 commit 87354a6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Illuminate/Http/Client/RequestException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ protected function prepareMessage(Response $response)
9696
? Message::bodySummary($response->toPsrResponse(), $truncateExceptionsAt)
9797
: Message::toString($response->toPsrResponse());
9898

99-
return is_null($summary) ? $message : $message . ":\n{$summary}\n";
99+
return is_null($summary) ? $message : $message.":\n{$summary}\n";
100100
}
101101

102102
/**

tests/Http/HttpClientTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1469,7 +1469,7 @@ public function testReportingExceptionTwiceDoesNotIncludeSummaryTwice()
14691469
$exception->report();
14701470
$exception->report();
14711471

1472-
$this->assertEquals(1, substr_count($exception->getMessage(), '{"error":{"code":403,"message":"The Request can not be completed"}}'));
1472+
$this->assertEquals(1, substr_count($exception->getMessage(), '{"error":{"code":403,"message":"The Request can not be completed"}}'));
14731473
}
14741474

14751475
public function testOnErrorDoesntCallClosureOnInformational()

0 commit comments

Comments
 (0)