1
0
mirror of https://github.com/fzaninotto/Faker.git synced 2025-04-21 16:01:56 +02:00

Merge pull request #1682 from thearsalan/hotfix/add-undeclared-faker-instance-to-test-en_NG

Add Undeclared Faker Instance to PhoneNumber Test in en_NG
This commit is contained in:
Francois Zaninotto 2019-04-01 22:39:28 +02:00 committed by GitHub
commit cc2d3b3797
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,6 +8,12 @@ use PHPUnit\Framework\TestCase;
class PhoneNumberTest extends TestCase
{
/**
* @var Generator
*/
private $faker;
public function setUp()
{
$faker = new Generator();