1
0
mirror of https://github.com/fzaninotto/Faker.git synced 2025-04-20 07:21:57 +02:00

[fix] complies with psr-2 (#2006)

This commit is contained in:
rymiyamoto 2020-10-23 16:24:14 +09:00 committed by GitHub
parent 2f538cc46c
commit 3ed1ec020e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 8 additions and 4 deletions

View File

@ -18,7 +18,8 @@ final class HtmlLoremTest extends TestCase
$this->assertStringEndsWith("</html>\n", $node);
}
public function testRandomHtmlReturnsValidHTMLString(){
public function testRandomHtmlReturnsValidHTMLString()
{
$faker = new Generator();
$faker->addProvider(new HtmlLorem($faker));
$node = $faker->randomHtml(6, 10);

View File

@ -63,7 +63,8 @@ final class AddressTest extends TestCase
/**
* @test
*/
public function address (){
public function address ()
{
$address = $this->faker->address();
$this->assertInternalType('string', $address);
}

View File

@ -63,7 +63,8 @@ final class AddressTest extends TestCase
/**
* @test
*/
public function address (){
public function address ()
{
$address = $this->faker->address();
$this->assertInternalType('string', $address);
}

View File

@ -63,7 +63,8 @@ final class AddressTest extends TestCase
/**
* @test
*/
public function address (){
public function address ()
{
$address = $this->faker->address();
$this->assertInternalType('string', $address);
}