Protected $schedules
Created 5 years ago by jcastillotx

So everything works fine with 'daily' but how do I execute 'twiceDaily' within the service provider

jcastillotx  —  5 years ago

I am getting this error on the cron job

In FieldFactory.php line 49:

6 is not a valid position

jcastillotx  —  5 years ago

What is in my serviceprovider

/**
 * The addon Artisan commands.
 *
 * @type array|null
 */
protected $commands = [
    RecurringDonationCharge::class
];

/**
 * The addon's scheduled commands.
 *
 * @type array|null
 */
protected $schedules = [
    'dailyAt|6:00' => [
        RecurringDonationCharge::class 
    ]
];
jcastillotx  —  5 years ago

I figured the issue was twicedaily was not working