Your IP : 216.73.216.196


Current Path : /home/icmq6107/clients/Marin/wp-content/plugins/duplicator-pro/src/Core/
Upload File :
Current File : /home/icmq6107/clients/Marin/wp-content/plugins/duplicator-pro/src/Core/RequirementsInterface.php

<?php

/**
 * Interface that collects the functions of initial checks on the requirements to run the plugin
 *
 * @package   Duplicator
 * @copyright (c) 2022, Snap Creek LLC
 */

namespace Duplicator\Core;

if (!interface_exists(RequirementsInterface::class, false)) {

    interface RequirementsInterface
    {
        /**
         * Return true if plugin can run
         *
         * @param string $pluginFile plugin file name
         *
         * @return boolean
         */
        public static function canRun($pluginFile);

        /**
         * Return plugin hash
         *
         * @return string
         */
        public static function getAddsHash();
    }

}