chore: complete update
This commit is contained in:
15
src/Framework/Http/MiddlewarePriorityAttribute.php
Normal file
15
src/Framework/Http/MiddlewarePriorityAttribute.php
Normal file
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace App\Framework\Http;
|
||||
|
||||
use Attribute;
|
||||
|
||||
#[Attribute(Attribute::TARGET_CLASS)]
|
||||
class MiddlewarePriorityAttribute
|
||||
{
|
||||
public function __construct(
|
||||
public MiddlewarePriority $priority,
|
||||
public int $offset = 0
|
||||
) {}
|
||||
}
|
||||
Reference in New Issue
Block a user