HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux mail.btech-izolacje.pl 5.15.0-140-generic #150-Ubuntu SMP Sat Apr 12 06:00:09 UTC 2025 x86_64
User: pewna6876 (1017)
PHP: 8.2.28
Disabled: NONE
Upload Files
File: /home/pewnabryka.pl/public_html/wp-content/plugins/duplicator-pro/src/Models/RecommendedFix.php
<?php

/**
 *
 * @package   Duplicator
 * @copyright (c) 2022, Snap Creek LLC
 */

namespace Duplicator\Models;

use ReflectionObject;

class RecommendedFix
{
    const TYPE_TEXT = 0;
    const TYPE_FIX  = 1;

    /** @var string */
    public $id = '';
    /** @var int Enum type */
    public $recommended_fix_type = self::TYPE_TEXT;
    /** @var string */
    public $error_text = '';
    /** @var string */
    public $parameter1 = '';
    /** @var mixed[] */
    public $parameter2 = [];

    /**
     * Get object
     *
     * @param mixed[] $data input data
     *
     * @return self
     */
    public static function objectFromData($data)
    {
        $result  = new self();
        $reflect = new ReflectionObject($result);
        foreach ($reflect->getProperties() as $prop) {
            if (!isset($data[$prop->getName()])) {
                continue;
            }
            $prop->setAccessible(true);
            $prop->setValue($result, $data[$prop->getName()]);
        }
        return $result;
    }
}