| 1 |
<?php |
| 2 |
|
| 3 |
namespace Give\TestData\Factories; |
| 4 |
|
| 5 |
use Give\TestData\Framework\Factory; |
| 6 |
use Give\ValueObjects\Money; |
| 7 |
|
| 8 |
class RevenueFactory extends Factory |
| 9 |
{ |
| 10 |
public function definition() |
| 11 |
{ |
| 12 |
$donationForm = $this->randomDonationForm(); |
| 13 |
|
| 14 |
return [ |
| 15 |
'donation_id' => $this->randomDonation(), |
| 16 |
'form_id' => $donationForm['id'], |
| 17 |
'amount' => Money::of($this->randomAmount(), give_get_option('currency'))->getMinorAmount(), |
| 18 |
]; |
| 19 |
} |
| 20 |
} |
| 21 |
|