# give/4.15.3/src/DonorDashboards/Factories/DonorFactory.php

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

- Page: https://pluginprobe.com/plugins/give/4.15.3/code/src/DonorDashboards/Factories/DonorFactory.php
- Raw: https://pluginprobe.com/plugins/give/4.15.3/raw/src/DonorDashboards/Factories/DonorFactory.php
- Modified: 2021-11-23T23:55:18+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.15.3/code/src/DonorDashboards/Factories/DonorFactory.php#L10-L20`.

```php
<?php

namespace Give\DonorDashboards\Factories;

use Give_Donor as DonorModel;

/**
 * @since 2.10.0
 */
class DonorFactory
{

    public function make($donorId)
    {
        return new DonorModel($donorId);
    }
}

```
