# give/4.16.8.1/src/TestData/Framework/Provider/RandomProvider.php

GiveWP – Donation Plugin and Fundraising Platform, version 4.16.8.1. 18 lines.

- Page: https://pluginprobe.com/plugins/give/4.16.8.1/code/src/TestData/Framework/Provider/RandomProvider.php
- Raw: https://pluginprobe.com/plugins/give/4.16.8.1/raw/src/TestData/Framework/Provider/RandomProvider.php
- Modified: 2024-11-06T18:55: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/give/4.16.8.1/code/src/TestData/Framework/Provider/RandomProvider.php#L10-L20`.

```php
<?php

namespace Give\TestData\Framework\Provider;


use Faker\Generator;

abstract class RandomProvider implements ProviderContract
{

    public function __construct(Generator $faker)
    {
        $this->faker = $faker;
    }

    abstract public function __invoke();
}

```
