- Add DISCOVERY_LOG_LEVEL=debug - Add DISCOVERY_SHOW_PROGRESS=true - Temporary changes for debugging InitializerProcessor fixes on production
18 lines
279 B
PHP
18 lines
279 B
PHP
<?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
|
|
) {
|
|
}
|
|
}
|