@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | namespace MartinGeorgiev\SocialPost\Provider\LinkedIn; |
6 | 6 | |
@@ -65,7 +65,7 @@ discard block |
||
65 | 65 | } |
66 | 66 | |
67 | 67 | try { |
68 | - $publishShareEndpoint = 'v1/companies/' . $this->companyPageId. '/shares'; |
|
68 | + $publishShareEndpoint = 'v1/companies/' . $this->companyPageId . '/shares'; |
|
69 | 69 | $options = ['json' => $this->prepareShare($message)]; |
70 | 70 | $share = $this->linkedIn->post($publishShareEndpoint, $options); |
71 | 71 |