Skip to content

Commit

Permalink
rebuilt with updated openapi-client-generator
Browse files Browse the repository at this point in the history
  • Loading branch information
battis committed Apr 21, 2024
1 parent 8624e63 commit 6b2dae9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions src/BlackbaudSKY.php
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,9 @@ protected function createResourceOwner(array $response, AccessToken $token) {}
protected function getAuthorizationHeaders($token = null)
{
return [
self::ACCESS_KEY => $this->accessKey,
"Authorization" => "Bearer " . $token,
];
self::ACCESS_KEY => $this->accessKey,
"Authorization" => "Bearer " . $token,
];
}

public function getAccessToken($grant = "", array $options = [])
Expand Down
4 changes: 2 additions & 2 deletions src/SkyAPIEndpoint.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ public function __construct(
$this->path = $path;
$this->accessToken = $accessToken;
$this->client = new Client([
"base_uri" => Path::join($this->sky->getBaseApiUrl(), $this->path) . "/",
]);
"base_uri" => Path::join($this->sky->getBaseApiUrl(), $this->path) . "/",
]);
}

public function send(string $method, string $url, array $options = []): mixed
Expand Down

0 comments on commit 6b2dae9

Please sign in to comment.