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

Commit 3ed1ec0

Browse files
author
rymiyamoto
authored
[fix] complies with psr-2 (#2006)
1 parent 2f538cc commit 3ed1ec0

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

Diff for: test/Faker/Provider/HtmlLoremTest.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ public function testProvider()
1818
$this->assertStringEndsWith("</html>\n", $node);
1919
}
2020

21-
public function testRandomHtmlReturnsValidHTMLString(){
21+
public function testRandomHtmlReturnsValidHTMLString()
22+
{
2223
$faker = new Generator();
2324
$faker->addProvider(new HtmlLorem($faker));
2425
$node = $faker->randomHtml(6, 10);

Diff for: test/Faker/Provider/de_CH/AddressTest.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,8 @@ public function cantonShort ()
6363
/**
6464
* @test
6565
*/
66-
public function address (){
66+
public function address ()
67+
{
6768
$address = $this->faker->address();
6869
$this->assertInternalType('string', $address);
6970
}

Diff for: test/Faker/Provider/fr_CH/AddressTest.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,8 @@ public function cantonShort ()
6363
/**
6464
* @test
6565
*/
66-
public function address (){
66+
public function address ()
67+
{
6768
$address = $this->faker->address();
6869
$this->assertInternalType('string', $address);
6970
}

Diff for: test/Faker/Provider/it_CH/AddressTest.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,8 @@ public function cantonShort ()
6363
/**
6464
* @test
6565
*/
66-
public function address (){
66+
public function address ()
67+
{
6768
$address = $this->faker->address();
6869
$this->assertInternalType('string', $address);
6970
}

0 commit comments

Comments
 (0)