| 1 |
<?php |
| 2 |
|
| 3 |
namespace App\Billingo\Factories; |
| 4 |
|
| 5 |
class DocumentInstantPaymentRequestFactory extends BaseFactory |
| 6 |
{ |
| 7 |
|
| 8 |
public function definition(): array |
| 9 |
{ |
| 10 |
return [ |
| 11 |
'debtor_bank_account' =>$this->faker->regexify('[A-Z]{2}--[0-9]{6}'), |
| 12 |
'different_amount_allowed' => $this->faker->boolean(), |
| 13 |
'update_partner_payment_details' => $this->faker->boolean(), |
| 14 |
]; |
| 15 |
} |
| 16 |
} |
| 17 |
|