for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Codenixsv\CoinGeckoApi\Api;
use Exception;
class Events extends Api
{
/**
* @param array $params
* @return array
* @throws Exception
*/
public function getEvents(array $params = []): array
return $this->get('/events', $params);
}
public function getCountries(): array
return $this->get('/events/countries');
public function getTypes(): array
return $this->get('/events/types');