File "Integration.php"
Full Path: /home/tekvhqgl/public_html/wp-content/plugins/popup-maker/classes/Abstract/Integration.php
File size: 419 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
/**
* Abstract class for Integrations.
*
* @package PUM
* @copyright Copyright (c) 2023, Code Atlantic LLC
*/
abstract class PUM_Abstract_Integration implements PUM_Interface_Integration {
/**
* @var string
*/
public $key;
/**
* @var string
*/
public $type;
/**
* @return string
*/
abstract public function label();
/**
* @return bool
*/
abstract public function enabled();
}