Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[11.x] add queued closure type for soft delete events #51982

Merged
merged 1 commit into from
Jul 2, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions src/Illuminate/Database/Eloquent/SoftDeletes.php
Original file line number Diff line number Diff line change
@@ -165,7 +165,7 @@ public function trashed()
/**
* Register a "softDeleted" model event callback with the dispatcher.
*
* @param \Closure|string $callback
* @param \Illuminate\Events\QueuedClosure|\Closure|string $callback
* @return void
*/
public static function softDeleted($callback)
@@ -176,7 +176,7 @@ public static function softDeleted($callback)
/**
* Register a "restoring" model event callback with the dispatcher.
*
* @param \Closure|string $callback
* @param \Illuminate\Events\QueuedClosure|\Closure|string $callback
* @return void
*/
public static function restoring($callback)
@@ -187,7 +187,7 @@ public static function restoring($callback)
/**
* Register a "restored" model event callback with the dispatcher.
*
* @param \Closure|string $callback
* @param \Illuminate\Events\QueuedClosure|\Closure|string $callback
* @return void
*/
public static function restored($callback)
@@ -198,7 +198,7 @@ public static function restored($callback)
/**
* Register a "forceDeleting" model event callback with the dispatcher.
*
* @param \Closure|string $callback
* @param \Illuminate\Events\QueuedClosure|\Closure|string $callback
* @return void
*/
public static function forceDeleting($callback)
@@ -209,7 +209,7 @@ public static function forceDeleting($callback)
/**
* Register a "forceDeleted" model event callback with the dispatcher.
*
* @param \Closure|string $callback
* @param \Illuminate\Events\QueuedClosure|\Closure|string $callback
* @return void
*/
public static function forceDeleted($callback)