Post::post()
last analyzed

Size

Total Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 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