Add free company member data to endpoint

This commit is contained in:
Daniel_I_Am 2020-08-29 15:58:47 +02:00
parent c57eb21061
commit 57903bdfcd
No known key found for this signature in database
GPG Key ID: 80C428FCC9743E84

View File

@ -31,7 +31,7 @@ class LodestoneApiService
public function getFreeCompanyById($id) { public function getFreeCompanyById($id) {
$ch = curl_init(); $ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://xivapi.com/freecompany/'.$id); curl_setopt($ch, CURLOPT_URL, 'https://xivapi.com/freecompany/'.$id.'?data=FCM');
return $this->completeCurlRequest($ch); return $this->completeCurlRequest($ch);
} }