Skip to content
This repository has been archived by the owner on Jun 26, 2020. It is now read-only.

Commit

Permalink
Added getters to FacebookConnection
Browse files Browse the repository at this point in the history
  • Loading branch information
core23 committed Feb 25, 2017
1 parent 7c62b2b commit 6ebe68b
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions Connection/FacebookConnection.php
Expand Up @@ -39,4 +39,20 @@ public function __construct(string $apiKey, string $sharedSecret)
$this->apiId = $apiKey;
$this->sharedSecret = $sharedSecret;
}

/**
* @return string
*/
public function getApiId(): string
{
return $this->apiId;
}

/**
* @return string
*/
public function getSharedSecret(): string
{
return $this->sharedSecret;
}
}

0 comments on commit 6ebe68b

Please sign in to comment.