Total Complexity | 3 |
Total Lines | 38 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
10 | class TimelineHashtag implements TimelineOwnerInterface, ModifiesTimelineRequest |
||
11 | { |
||
12 | /** @var string */ |
||
13 | protected $hashtag; |
||
14 | |||
15 | /** |
||
16 | * TimelineHashtag constructor. |
||
17 | * |
||
18 | * @param string $hashtag |
||
19 | */ |
||
20 | public function __construct(string $hashtag) |
||
23 | } |
||
24 | |||
25 | /** |
||
26 | * Get the timeline URL prefix. |
||
27 | * |
||
28 | * @return string |
||
29 | */ |
||
30 | public function getTimelineUrlPrefix() |
||
33 | } |
||
34 | |||
35 | /** |
||
36 | * Modify given timeline request. |
||
37 | * |
||
38 | * @param TimelineRequest $request |
||
39 | * |
||
40 | * @return TimelineRequest |
||
41 | */ |
||
42 | public function modifyTimelineRequest($request) |
||
51 |