# billingo/trunk/src/Factories/BaseFactory.php

Billingo Official for WooCommerce, version trunk. 18 lines.

- Page: https://pluginprobe.com/plugins/billingo/trunk/code/src/Factories/BaseFactory.php
- Raw: https://pluginprobe.com/plugins/billingo/trunk/raw/src/Factories/BaseFactory.php
- Modified: 2025-05-26T04:53:08+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/billingo/trunk/code/src/Factories/BaseFactory.php#L10-L20`.

```php
<?php

namespace App\Billingo\Factories;

use App\Billingo\Contracts\FactoryInterface;
use Faker\Factory;
use Faker\Generator;

abstract class BaseFactory implements FactoryInterface
{
    protected Generator $faker;

    public function __construct()
    {
        $this->faker = Factory::create();
    }
}

```
