You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When you have an operation that already ran, and it has an entry in the operations table I get the following error when executing php artisan operations:show
ERROR TimoKoerber\LaravelOneTimeOperations\Commands\Utils\OperationsLineElement::make(): Argument #3 ($processedAt) must be of type ?Illuminate\Support\Carbon, Carbon\CarbonIm
mutable given, called in vendor/timokoerber/laravel-one-time-operations/src/Commands/OneTimeOperationShowCommand.php on line 95.
This happens because of
class AppServiceProvider extends ServiceProvider
{
/**
* Bootstrap any application services.
*/
public function boot(): void
{
Date::use(CarbonImmutable::class);
}
}
The text was updated successfully, but these errors were encountered:
When you have an operation that already ran, and it has an entry in the operations table I get the following error when executing
php artisan operations:show
This happens because of
The text was updated successfully, but these errors were encountered: