Skip to content

Commit

Permalink
Fix braces in Client classes
Browse files Browse the repository at this point in the history
  • Loading branch information
beatrycze-volk committed Sep 25, 2024
1 parent c5d13ea commit 88cb00e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion Classes/Api/Orcid/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,8 @@ public function __construct(string $orcid, RequestFactory $requestFactory)
*
* @return void
*/
public function setEndpoint(string $endpoint): void {
public function setEndpoint(string $endpoint): void
{
$this->endpoint = $endpoint;
}

Expand Down
5 changes: 3 additions & 2 deletions Classes/Api/Viaf/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,8 @@ public function __construct(string $viaf, RequestFactory $requestFactory)
*
* @return void
*/
public function setEndpoint(string $endpoint): void {
public function setEndpoint(string $endpoint): void
{
$this->endpoint = $endpoint;
}

Expand All @@ -103,7 +104,7 @@ public function getData()

/**
* Creates the qualified API endpoint for retrieving the desired data
*
*
* @access private
*
* @return string
Expand Down

0 comments on commit 88cb00e

Please sign in to comment.