File "Integration.php"

Full Path: /home/tekvhqgl/public_html/wp-content/plugins/popup-maker/classes/Interface/Integration.php
File size: 270 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
/**
 * Interface for Integration
 *
 * @package   PUM
 * @copyright Copyright (c) 2023, Code Atlantic LLC
 */

interface PUM_Interface_Integration {

	/**
	 * @return string
	 */
	public function label();

	/**
	 * @return bool
	 */
	public function enabled();

}