Skip to content

Commit 9700eef

Browse files
m1guelpfStyleCIBot
authored andcommitted
Apply fixes from StyleCI
1 parent b61c3e8 commit 9700eef

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/OrgManager.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class OrgManager
1919
*/
2020
public function __construct($apiToken = null, $rootUrl = 'https://orgmanager.miguelpiedrafita.com')
2121
{
22-
$this->client = new Client;
22+
$this->client = new Client();
2323

2424
$this->apiToken = $apiToken;
2525

@@ -37,26 +37,26 @@ public function connect($apiToken)
3737

3838
return $this->apiToken;
3939
}
40-
40+
4141
/**
4242
* @return \GuzzleHttp\Client
4343
*/
4444
public function getClient()
4545
{
4646
return $this->client;
4747
}
48-
48+
4949
/**
5050
* @param \GuzzleHttp\Client $client
5151
*
5252
* @return void
5353
*/
5454
public function setClient($client)
5555
{
56-
if ($client instanceof Client)
57-
{
56+
if ($client instanceof Client) {
5857
$this->client = $client;
5958
}
59+
6060
return $this;
6161
}
6262

0 commit comments

Comments
 (0)