File "Activateable.php"

Full Path: /home/siazco/grocery.siazco.se/wp-content/plugins/flexible-shipping/vendor_prefixed/wpdesk/wp-builder/src/Plugin/Activateable.php
File size: 397 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace FSVendor\WPDesk\PluginBuilder\Plugin;

/**
 * Tag the plugin with this ingterface to hook it to the WordPress activation hook.
 *
 * Note: works from plugin flow ^2.2.
 *
 * @package WPDesk\PluginBuilder\Plugin
 */
interface Activateable
{
    /**
     * Plugin activated in WordPress. Do not execute directly.
     *
     * @return void
     */
    public function activate();
}