Files
CloudOps/docker-compose/mautic-setup/mautic-backup-files/docroot/app/bundles/CampaignBundle/Entity/ChannelInterface.php

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;
}