Skip to content

Commit

Permalink
fix incorrect comments about API key. closes #85
Browse files Browse the repository at this point in the history
  • Loading branch information
daaku committed May 19, 2010
1 parent 75de1f5 commit 4dff0b0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/facebook.php
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ class Facebook
* Initialize a Facebook Application.
*
* The configuration:
* - appId: the application API key
* - appId: the application ID
* - secret: the application secret
* - cookie: (optional) boolean true to enable cookie support
* - domain: (optional) domain for the cookie
Expand All @@ -164,17 +164,17 @@ public function __construct($config) {
/**
* Set the Application ID.
*
* @param String $appId the API key
* @param String $appId the Application ID
*/
public function setAppId($appId) {
$this->appId = $appId;
return $this;
}

/**
* Get the API Key.
* Get the Application ID.
*
* @return String the API key
* @return String the Application ID
*/
public function getAppId() {
return $this->appId;
Expand Down

0 comments on commit 4dff0b0

Please sign in to comment.