@@ -147,7 +147,7 @@ public function removeObservableEvents($observables)
147
147
* Register a model event with the dispatcher.
148
148
*
149
149
* @param string $event
150
- * @param \Illuminate\Events\QueuedClosure|\Closure|string $callback
150
+ * @param \Illuminate\Events\QueuedClosure|\Closure|string|array $callback
151
151
* @return void
152
152
*/
153
153
protected static function registerModelEvent ($ event , $ callback )
@@ -230,7 +230,7 @@ protected function filterModelEventResults($result)
230
230
/**
231
231
* Register a retrieved model event with the dispatcher.
232
232
*
233
- * @param \Illuminate\Events\QueuedClosure|\Closure|string $callback
233
+ * @param \Illuminate\Events\QueuedClosure|\Closure|string|array $callback
234
234
* @return void
235
235
*/
236
236
public static function retrieved ($ callback )
@@ -241,7 +241,7 @@ public static function retrieved($callback)
241
241
/**
242
242
* Register a saving model event with the dispatcher.
243
243
*
244
- * @param \Illuminate\Events\QueuedClosure|\Closure|string $callback
244
+ * @param \Illuminate\Events\QueuedClosure|\Closure|string|array $callback
245
245
* @return void
246
246
*/
247
247
public static function saving ($ callback )
@@ -252,7 +252,7 @@ public static function saving($callback)
252
252
/**
253
253
* Register a saved model event with the dispatcher.
254
254
*
255
- * @param \Illuminate\Events\QueuedClosure|\Closure|string $callback
255
+ * @param \Illuminate\Events\QueuedClosure|\Closure|string|array $callback
256
256
* @return void
257
257
*/
258
258
public static function saved ($ callback )
@@ -263,7 +263,7 @@ public static function saved($callback)
263
263
/**
264
264
* Register an updating model event with the dispatcher.
265
265
*
266
- * @param \Illuminate\Events\QueuedClosure|\Closure|string $callback
266
+ * @param \Illuminate\Events\QueuedClosure|\Closure|string|array $callback
267
267
* @return void
268
268
*/
269
269
public static function updating ($ callback )
@@ -274,7 +274,7 @@ public static function updating($callback)
274
274
/**
275
275
* Register an updated model event with the dispatcher.
276
276
*
277
- * @param \Illuminate\Events\QueuedClosure|\Closure|string $callback
277
+ * @param \Illuminate\Events\QueuedClosure|\Closure|string|array $callback
278
278
* @return void
279
279
*/
280
280
public static function updated ($ callback )
@@ -285,7 +285,7 @@ public static function updated($callback)
285
285
/**
286
286
* Register a creating model event with the dispatcher.
287
287
*
288
- * @param \Illuminate\Events\QueuedClosure|\Closure|string $callback
288
+ * @param \Illuminate\Events\QueuedClosure|\Closure|string|array $callback
289
289
* @return void
290
290
*/
291
291
public static function creating ($ callback )
@@ -296,7 +296,7 @@ public static function creating($callback)
296
296
/**
297
297
* Register a created model event with the dispatcher.
298
298
*
299
- * @param \Illuminate\Events\QueuedClosure|\Closure|string $callback
299
+ * @param \Illuminate\Events\QueuedClosure|\Closure|string|array $callback
300
300
* @return void
301
301
*/
302
302
public static function created ($ callback )
@@ -307,7 +307,7 @@ public static function created($callback)
307
307
/**
308
308
* Register a replicating model event with the dispatcher.
309
309
*
310
- * @param \Illuminate\Events\QueuedClosure|\Closure|string $callback
310
+ * @param \Illuminate\Events\QueuedClosure|\Closure|string|array $callback
311
311
* @return void
312
312
*/
313
313
public static function replicating ($ callback )
@@ -318,7 +318,7 @@ public static function replicating($callback)
318
318
/**
319
319
* Register a deleting model event with the dispatcher.
320
320
*
321
- * @param \Illuminate\Events\QueuedClosure|\Closure|string $callback
321
+ * @param \Illuminate\Events\QueuedClosure|\Closure|string|array $callback
322
322
* @return void
323
323
*/
324
324
public static function deleting ($ callback )
@@ -329,7 +329,7 @@ public static function deleting($callback)
329
329
/**
330
330
* Register a deleted model event with the dispatcher.
331
331
*
332
- * @param \Illuminate\Events\QueuedClosure|\Closure|string $callback
332
+ * @param \Illuminate\Events\QueuedClosure|\Closure|string|array $callback
333
333
* @return void
334
334
*/
335
335
public static function deleted ($ callback )
0 commit comments