for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Spiral\Boot\Attribute;
#[\Attribute(\Attribute::TARGET_METHOD)]
final class BootMethod
{
public function __construct(
public readonly int $priority = 0,
) {}
}