21 lines
325 B
PHP
Executable File
21 lines
325 B
PHP
Executable File
<?php
|
|
|
|
namespace Mautic\CampaignBundle\Entity;
|
|
|
|
interface ChannelInterface
|
|
{
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getChannel();
|
|
|
|
public function setChannel($channel): void;
|
|
|
|
/**
|
|
* @return int|string
|
|
*/
|
|
public function getChannelId();
|
|
|
|
public function setChannelId($id): void;
|
|
}
|