Skip to content

Commit

Permalink
styling fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
peterbakker committed Jul 3, 2020
1 parent 25f6660 commit 14abfe8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ public function getAccount(): Account
protected function getHttpClient()
{
if ($this->httpClient === null) {
$config = [
$config = [
'base_uri' => (
($this->getOption('mode', self::MODE_LIVE) == self::MODE_LIVE) ?
self::DIRECTORY_LIVE : self::DIRECTORY_STAGING),
Expand Down Expand Up @@ -537,9 +537,9 @@ protected function getPath($path = null): string
$userDirectory = preg_replace('/[^a-z0-9]+/', '-', strtolower($this->getOption('username')));

return $this->getOption(
'basePath',
'le'
) . DIRECTORY_SEPARATOR . $userDirectory . ($path === null ? '' : DIRECTORY_SEPARATOR . $path);
'basePath',
'le'
) . DIRECTORY_SEPARATOR . $userDirectory . ($path === null ? '' : DIRECTORY_SEPARATOR . $path);
}

/**
Expand Down

0 comments on commit 14abfe8

Please sign in to comment.