Repository URL to install this package:
|
Version:
2.3.7 ▾
|
jsarnowski/brizy-pro
/
bagrinsergiu
/
brizy-forms-sdk
/
lib
/
BrizyForms
/
NativeService
/
MailerLiteNativeService.php
|
|---|
<?php
namespace BrizyForms\NativeService;
class MailerLiteNativeService extends NativeService
{
/**
* @var string
*/
protected $baseUrl = 'https://api.mailerlite.com/api/v2/';
protected function internalGetOptions()
{
return [
'headers' => [
'X-MailerLite-ApiKey' => $this->getApiKey()
]
];
}
}