1
0
mirror of https://github.com/fzaninotto/Faker.git synced 2025-03-22 08:19:52 +01:00

Merge branch 'master' of github.com:fzaninotto/Faker

This commit is contained in:
Francois Zaninotto 2012-12-12 09:01:27 +01:00
commit 9fc08f1d45

View File

@ -2,11 +2,19 @@
namespace Faker\Provider;
use Faker\Generator;
class Base
{
/**
* @var \Faker\Generator
*/
protected $generator;
public function __construct($generator)
/**
* @param \Faker\Generator $generator
*/
public function __construct(Generator $generator)
{
$this->generator = $generator;
}