Skip to content

Commit 4170afa

Browse files
committed
Apply fixes from StyleCI
1 parent ebb4cdc commit 4170afa

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/Illuminate/Foundation/Testing/Concerns/MakesHttpRequests.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ public function withToken(string $token, string $type = 'Bearer')
110110
public function withoutToken()
111111
{
112112
unset($this->defaultHeaders['Authorization']);
113-
113+
114114
return $this;
115115
}
116116

tests/Foundation/Testing/Concerns/MakesHttpRequestsTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ public function testWithTokenSetsAuthorizationHeader()
2626
$this->assertSame('Basic foobar', $this->defaultHeaders['Authorization']);
2727
}
2828

29-
3029
public function testWithoutTokenRemovesAuthorizationHeader()
3130
{
3231
$this->withToken('foobar');

0 commit comments

Comments
 (0)