????

Your IP : 216.73.217.84


Current Path : /home/arabianr/public_html/wp-content/plugins/simplybook/app/Interfaces/
Upload File :
Current File : /home/arabianr/public_html/wp-content/plugins/simplybook/app/Interfaces/ControllerInterface.php

<?php

namespace SimplyBook\Interfaces;

/**
 * This interface can be used to register a controller. Controllers will only
 * be accepted and registered by {@see ControllerManager} when they implement
 * this interface.
 */
interface ControllerInterface
{
    /**
     * This method should be used to register all hooks and filters. The
     * {@see ControllerManager} will make sure the method is called in the boot
     * process of the plugin.
     */
    public function register(): void;
}