@@ -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\Facebook; |
6 | 6 | |
@@ -63,7 +63,7 @@ discard block |
||
63 | 63 | } |
64 | 64 | |
65 | 65 | try { |
66 | - $publishPostEndpoint = '/' . $this->pageId. '/feed'; |
|
66 | + $publishPostEndpoint = '/' . $this->pageId . '/feed'; |
|
67 | 67 | $response = $this->facebook->post( |
68 | 68 | $publishPostEndpoint, |
69 | 69 | $this->prepareParams($message) |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | namespace MartinGeorgiev\SocialPost\Provider; |
6 | 6 |