@@ -326,7 +326,7 @@ public function after(callable $callback)
326
326
* Determine if all of the given abilities should be granted for the current user.
327
327
*
328
328
* @param iterable|\UnitEnum|string $ability
329
- * @param array| mixed $arguments
329
+ * @param mixed $arguments
330
330
* @return bool
331
331
*/
332
332
public function allows ($ ability , $ arguments = [])
@@ -338,7 +338,7 @@ public function allows($ability, $arguments = [])
338
338
* Determine if any of the given abilities should be denied for the current user.
339
339
*
340
340
* @param iterable|\UnitEnum|string $ability
341
- * @param array| mixed $arguments
341
+ * @param mixed $arguments
342
342
* @return bool
343
343
*/
344
344
public function denies ($ ability , $ arguments = [])
@@ -350,7 +350,7 @@ public function denies($ability, $arguments = [])
350
350
* Determine if all of the given abilities should be granted for the current user.
351
351
*
352
352
* @param iterable|\UnitEnum|string $abilities
353
- * @param array| mixed $arguments
353
+ * @param mixed $arguments
354
354
* @return bool
355
355
*/
356
356
public function check ($ abilities , $ arguments = [])
@@ -364,7 +364,7 @@ public function check($abilities, $arguments = [])
364
364
* Determine if any one of the given abilities should be granted for the current user.
365
365
*
366
366
* @param iterable|\UnitEnum|string $abilities
367
- * @param array| mixed $arguments
367
+ * @param mixed $arguments
368
368
* @return bool
369
369
*/
370
370
public function any ($ abilities , $ arguments = [])
@@ -376,7 +376,7 @@ public function any($abilities, $arguments = [])
376
376
* Determine if all of the given abilities should be denied for the current user.
377
377
*
378
378
* @param iterable|\UnitEnum|string $abilities
379
- * @param array| mixed $arguments
379
+ * @param mixed $arguments
380
380
* @return bool
381
381
*/
382
382
public function none ($ abilities , $ arguments = [])
@@ -388,7 +388,7 @@ public function none($abilities, $arguments = [])
388
388
* Determine if the given ability should be granted for the current user.
389
389
*
390
390
* @param \UnitEnum|string $ability
391
- * @param array| mixed $arguments
391
+ * @param mixed $arguments
392
392
* @return \Illuminate\Auth\Access\Response
393
393
*
394
394
* @throws \Illuminate\Auth\Access\AuthorizationException
0 commit comments