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