|int */ public array|int $backoff; /** * Create a new attribute instance. * * @param array|int ...$backoff Seconds to wait before retrying the job. */ public function __construct(array|int ...$backoff) { $this->backoff = count($backoff) === 1 ? $backoff[0] : $backoff; } }