1
0
mirror of https://github.com/fzaninotto/Faker.git synced 2025-03-21 07:49:53 +01:00

Add move FQCN to an alias in BaseProvider

This commit is contained in:
Francois Zaninotto 2013-10-21 23:24:03 +02:00
parent 8079d8e95f
commit 728dc177d5

View File

@ -3,6 +3,7 @@
namespace Faker\Provider;
use Faker\Generator;
use Faker\NullGenerator;
use Faker\UniqueGenerator;
class Base
@ -221,7 +222,7 @@ class Base
return $this->generator;
}
return new \Faker\NullGenerator();
return new NullGenerator();
}
/**