League\FactoryMuffin\Generators\EntityGenerator::__construct PHP Method

__construct() public method

Create a new factory generator instance.
public __construct ( string $kind, object $model, FactoryMuffin $factoryMuffin ) : void
$kind string The kind of attribute.
$model object The model instance.
$factoryMuffin League\FactoryMuffin\FactoryMuffin The factory muffin instance.
return void
    public function __construct($kind, $model, FactoryMuffin $factoryMuffin)
    {
        $this->kind = $kind;
        $this->model = $model;
        $this->factoryMuffin = $factoryMuffin;
    }