Post
last analyzed

Size/Duplication

Total Lines 5
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 5

2 Methods

Rating   Name   Duplication   Size   Complexity  
post() 0 1 ?
message() 0 1 ?
1
<?php
2
3
namespace Structural\Adapter;
4
5
use Structural\Adapter\TwitterClient;
6
7
interface Post
8
{
9
    public function post($message);
0 ignored issues
show
Coding Style Best Practice introduced by
Please use __construct() instead of a PHP4-style constructor that is named after the class.
Loading history...
10
    public function message($message, $user);
11
}
12