Normalize some method calls (#2911)

The methods were called as static even though they were not.
This commit is contained in:
Jan Tojnar 2022-07-09 08:13:07 +02:00 committed by GitHub
parent a966213cd7
commit e07a94d480
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 12 additions and 12 deletions

View file

@ -82,7 +82,7 @@ class IndiegogoBridge extends BridgeAbstract
public function collectData()
{
$url = 'https://www.indiegogo.com/private_api/discover';
$data_array = self::getCategories();
$data_array = $this->getCategories();
$header = ['Content-type: application/json'];
$opts = [CURLOPT_POSTFIELDS => json_encode($data_array)];