1 line
371 B
PHP
1 line
371 B
PHP
<?php
|
|
namespace crmeb\basic;
|
|
abstract class BaseMessage
|
|
{
|
|
protected $config;
|
|
protected $service;
|
|
protected function initialize(array $config=[])
|
|
{
|
|
$this->config =$config;
|
|
}
|
|
/**
|
|
* @param string $templateId
|
|
* @return mixed
|
|
*/
|
|
abstract public function getTempId(string $templateId);
|
|
abstract public function list();
|
|
}
|