Skip to content
This repository has been archived by the owner on Jan 29, 2020. It is now read-only.

Commit

Permalink
Fixed codestyle issue with >120 chars per line
Browse files Browse the repository at this point in the history
  • Loading branch information
boesing committed Nov 12, 2019
1 parent 603d4a8 commit 6f68fc4
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions test/functions/MarshalUriFromSapiTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,12 @@ public function returnsUrlWithCorrectHttpSchemeFromArraysProvider() : array
/**
* @dataProvider returnsUrlWithCorrectSchemeAndHostFromArrays
*/
public function testReturnsUrlWithCorrectSchemeAndHostFromArrays(string $expectedScheme, string $expectedHost, array $server, array $headers) : void
{
public function testReturnsUrlWithCorrectSchemeAndHostFromArrays(
string $expectedScheme,
string $expectedHost,
array $server,
array $headers
) : void {
$uri = marshalUriFromSapi($server, $headers);
self::assertSame($expectedScheme, $uri->getScheme());
self::assertSame($expectedHost, $uri->getHost());
Expand Down

0 comments on commit 6f68fc4

Please sign in to comment.