ISender
last analyzed

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
dl 0
loc 14
ccs 0
cts 0
cp 0
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
config() 0 1 ?
send() 0 1 ?
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