<?php
namespace IlluminateQueueAttributes;
use Attribute;
#[Attribute(Attribute::TARGET_CLASS)]
class Delay
{
/**
* Create a new attribute instance.
*
* @param int $delay Seconds to delay the job for.
*/
public function __construct(public int $delay)
{
//
}
}