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