/**
  * Create an instance of the class with the Application ID and secret obtained from Eleven Paths
  * @param $appId
  * @param $secretKey
  */
 function __construct($appId, $secretKey)
 {
     parent::__construct($appId, $secretKey);
 }
 /**
  * Create an instance of the class with the User ID and secret obtained from Eleven Paths
  * @param $userId
  * @param $secretKey
  */
 public function __construct($userId, $secretKey)
 {
     parent::__construct($userId, $secretKey);
 }