Your IP : 216.73.216.213


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

<?php

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

namespace Duplicator\Core\Controllers;

interface ControllerInterface
{
    /**
     * Method called on WordPress hook init action
     *
     * @return void
     */
    public function hookWpInit();

    /**
     * Excecute controller
     *
     * @return void
     */
    public function run();

    /**
     * Render page
     *
     * @return void
     */
    public function render();
}