Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
15 | public function createFeedItem(string $title, array $params, string $url = null, string $account = null) |
||
16 | { |
||
17 | $this->call('POST', 'feed', [], [ |
||
18 | 'account_id' => $account ?? $this->getAccountId(), |
||
19 | 'title' => $title, |
||
20 | 'url' => $url, |
||
21 | 'params' => $params, |
||
22 | 'type' => 'basic', |
||
23 | ]); |
||
26 |