MessageInterface
last analyzed

Size/Duplication

Total Lines 6
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 6
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
getRecipient() 0 1 ?
getMessage() 0 1 ?
1
<?php
2
/**
3
 * Created by PhpStorm.
4
 * User: Pavel
5
 * Date: 2015-05-09
6
 * Time: 20:22
7
 */
8
9
namespace ScayTrase\WebSMS\Message;
10
11
interface MessageInterface
12
{
13
    public function getRecipient();
14
15
    public function getMessage();
16
}
17