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:
parent
2f538cc46c
commit
3ed1ec020e
@ -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);
|
||||
|
@ -63,7 +63,8 @@ final class AddressTest extends TestCase
|
||||
/**
|
||||
* @test
|
||||
*/
|
||||
public function address (){
|
||||
public function address ()
|
||||
{
|
||||
$address = $this->faker->address();
|
||||
$this->assertInternalType('string', $address);
|
||||
}
|
||||
|
@ -63,7 +63,8 @@ final class AddressTest extends TestCase
|
||||
/**
|
||||
* @test
|
||||
*/
|
||||
public function address (){
|
||||
public function address ()
|
||||
{
|
||||
$address = $this->faker->address();
|
||||
$this->assertInternalType('string', $address);
|
||||
}
|
||||
|
@ -63,7 +63,8 @@ final class AddressTest extends TestCase
|
||||
/**
|
||||
* @test
|
||||
*/
|
||||
public function address (){
|
||||
public function address ()
|
||||
{
|
||||
$address = $this->faker->address();
|
||||
$this->assertInternalType('string', $address);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user