* @copyright Copyright (C) 2019-2021. Benjamin Lu * @license https://www.gnu.org/licenses/gpl-2.0.html */ namespace Benlumia007\Backdrop\Contracts; /** * Bootable interface. * * @since 3.0.0 * @access public */ interface Bootable { /** * Boots the class by running `add_action()` and `add_filter()` calls. * * @since 3.0.0 * @access public * @return void */ public function boot(); }