@@ -32,7 +32,7 @@ discard block |
||
32 | 32 | |
33 | 33 | public function __construct($guzzleFactory) |
34 | 34 | { |
35 | - $this->guzzleFactory = $guzzleFactory; |
|
35 | + $this->guzzleFactory = $guzzleFactory; |
|
36 | 36 | } |
37 | 37 | |
38 | 38 | /** |
@@ -95,7 +95,7 @@ discard block |
||
95 | 95 | $response = $client->post( |
96 | 96 | self::NOTICES_URI, |
97 | 97 | ['headers' => $headers, |
98 | - 'body' => $data] |
|
98 | + 'body' => $data] |
|
99 | 99 | ); |
100 | 100 | |
101 | 101 | if ($response->getStatusCode() != 201) { |
@@ -6,8 +6,8 @@ |
||
6 | 6 | |
7 | 7 | class GuzzleFactory |
8 | 8 | { |
9 | - public static function make($options) |
|
10 | - { |
|
9 | + public static function make($options) |
|
10 | + { |
|
11 | 11 | return new Client($options); |
12 | - } |
|
12 | + } |
|
13 | 13 | } |