1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-22 09:21:34 +02:00
invoiceninja/database/factories/SchedulerFactory.php

38 lines
1008 B
PHP
Raw Normal View History

2023-01-13 02:43:38 +01:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
*
* @license https://www.elastic.co/licensing/elastic-license
*/
namespace Database\Factories;
use App\Models\RecurringInvoice;
use Illuminate\Database\Eloquent\Factories\Factory;
class SchedulerFactory extends Factory
{
/**
* Define the model's default state.
*
* @return array
*/
public function definition()
{
return [
'name' => $this->faker->name(),
2023-02-16 02:36:09 +01:00
'is_paused' => rand(0, 1),
'is_deleted' => rand(0, 1),
2023-01-13 02:43:38 +01:00
'parameters' => [],
'frequency_id' => RecurringInvoice::FREQUENCY_MONTHLY,
2023-02-16 02:36:09 +01:00
'next_run' => now()->addSeconds(rand(86400, 8640000)),
'next_run_client' => now()->addSeconds(rand(86400, 8640000)),
'template' => 'client_statement',
2023-01-13 02:43:38 +01:00
];
}
}