Completed
Push — master ( 432f42...52264a )
by Roman
01:50
created

IMessageFactory

Size/Duplication

Total Lines 5
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
create() 0 1 ?
1
<?php
2
3
namespace RM\SMSender;
4
5
interface IMessageFactory
6
{
7
	/** @return IMessage */
8
	public function create();
9
}
10