ISender::send()
last analyzed

Size

Total Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 1
ccs 0
cts 0
cp 0
c 0
b 0
f 0
1
<?php
2
3
namespace RM\SMSender;
4
5
interface ISender
6
{
7
	/**
8
	 * @param  mixed $config
9
	 * @return self
10
	 */
11
	public function config($config);
12
13
	/**
14
	 * @param  IMessage $message
15
	 * @return bool|string ID of Message
16
	 */
17
	public function send(IMessage $message);
18
}
19