Your IP : 216.73.216.213


Current Path : /proc/self/cwd/wp-content/plugins/duplicator-pro/src/Core/Models/
Upload File :
Current File : //proc/self/cwd/wp-content/plugins/duplicator-pro/src/Core/Models/UpdateFromInputInterface.php

<?php

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

namespace Duplicator\Core\Models;

interface UpdateFromInputInterface
{
    /**
     * Set data from query input
     *
     * @param int $type One of INPUT_GET, INPUT_POST, INPUT_COOKIE, INPUT_SERVER, or INPUT_ENV, SnapUtil::INPUT_REQUEST
     *
     * @return bool true on success or false on failure
     */
    public function setFromInput($type);
}