for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Kunnu\Dropbox;
class DropboxApp
{
/**
* The Client ID of the App
*
* @link https://www.dropbox.com/developers/apps
* @var string
*/
protected $clientId;
* The Client Secret of the App
protected $clientSecret;
* The Access Token
protected $accessToken;
* Create a new Dropbox instance
* @param string $clientId Application Client ID
* @param string $clientSecret Application Client Secret
* @param string $accessToken Access Token
public function __construct($clientId, $clientSecret, $accessToken = null)
$this->clientId = $clientId;
$this->clientSecret = $clientSecret;
$this->accessToken = $accessToken;
}
* Get the App Client ID
* @return string
public function getClientId()
return $this->clientId;
* Get the App Client Secret
public function getClientSecret()
return $this->clientSecret;
* Get the Access Token
public function getAccessToken()
return $this->accessToken;