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

Commit 6f68fc4

Browse files
committed
Fixed codestyle issue with >120 chars per line
1 parent 603d4a8 commit 6f68fc4

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

test/functions/MarshalUriFromSapiTest.php

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,12 @@ public function returnsUrlWithCorrectHttpSchemeFromArraysProvider() : array
7878
/**
7979
* @dataProvider returnsUrlWithCorrectSchemeAndHostFromArrays
8080
*/
81-
public function testReturnsUrlWithCorrectSchemeAndHostFromArrays(string $expectedScheme, string $expectedHost, array $server, array $headers) : void
82-
{
81+
public function testReturnsUrlWithCorrectSchemeAndHostFromArrays(
82+
string $expectedScheme,
83+
string $expectedHost,
84+
array $server,
85+
array $headers
86+
) : void {
8387
$uri = marshalUriFromSapi($server, $headers);
8488
self::assertSame($expectedScheme, $uri->getScheme());
8589
self::assertSame($expectedHost, $uri->getHost());

0 commit comments

Comments
 (0)