Uname: Linux premium264.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
Software: LiteSpeed
PHP version: 8.3.22 [ PHP INFO ] PHP os: Linux
Server Ip: 69.57.162.13
Your Ip: 216.73.216.219
User: workvvfb (1129) | Group: workvvfb (1084)
Safe Mode: OFF
Disable Function:
NONE

name : class-queue-job.php
<?php

/**
 * Class MC4WP_Queue_Job
 *
 * @ignore
 */
class MC4WP_Queue_Job
{
    /**
     * @var string
     */
    public $id;

    /**
     * @var mixed
     */
    public $data;

    /**
     * @var int
     */
    public $max_attempts = 1;

    /**
     * @var int
     */
    public $attempts = 0;

    /**
     * MC4WP_Queue_Job constructor.
     *
     * @param mixed $data
     */
    public function __construct($data)
    {
        $this->id   = (string) microtime(true) . rand(1, 10000);
        $this->data = $data;
    }
}
© 2025 GrazzMean