We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2f9f35f commit 14fadebCopy full SHA for 14fadeb
src/Illuminate/Routing/Attributes/Controllers/Middleware.php
@@ -3,6 +3,7 @@
3
namespace Illuminate\Routing\Attributes\Controllers;
4
5
use Attribute;
6
+use Closure;
7
8
#[Attribute(Attribute::TARGET_CLASS | Attribute::TARGET_METHOD | Attribute::IS_REPEATABLE)]
9
class Middleware
@@ -12,7 +13,7 @@ class Middleware
12
13
* @param array<string>|null $except
14
*/
15
public function __construct(
- public string $value,
16
+ public Closure|string $value,
17
public ?array $only = null,
18
public ?array $except = null,
19
) {
0 commit comments