Skip to content

Commit 2d41f7f

Browse files
wasutzthilanga
authored andcommitted
Remove empty line, refactor some code (#1467)
* Remove empty space, refactor some code * fixed some style
1 parent 8beb74d commit 2d41f7f

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

config/api.php

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<?php
22

3-
43
return [
54

65
/*

src/Dispatcher.php

+3-1
Original file line numberDiff line numberDiff line change
@@ -542,7 +542,9 @@ protected function dispatch(InternalRequest $request)
542542

543543
if (! $response->isSuccessful() && ! $response->isRedirection()) {
544544
throw new InternalHttpException($response);
545-
} elseif (! $this->raw) {
545+
}
546+
547+
if (! $this->raw) {
546548
$response = $response->getOriginalContent();
547549
}
548550
} catch (HttpExceptionInterface $exception) {

0 commit comments

Comments
 (0)