mirror of
https://github.com/koel/koel
synced 2024-12-21 01:53:11 +00:00
34 lines
737 B
PHP
34 lines
737 B
PHP
<?php
|
|
|
|
namespace App\Http\Integrations\LemonSqueezy\Requests;
|
|
|
|
use App\Models\License;
|
|
use Saloon\Contracts\Body\HasBody;
|
|
use Saloon\Enums\Method;
|
|
use Saloon\Http\Request;
|
|
use Saloon\Traits\Body\HasFormBody;
|
|
|
|
class ValidateLicenseRequest extends Request implements HasBody
|
|
{
|
|
use HasFormBody;
|
|
|
|
protected Method $method = Method::POST;
|
|
|
|
public function __construct(private License $license)
|
|
{
|
|
}
|
|
|
|
public function resolveEndpoint(): string
|
|
{
|
|
return '/licenses/validate';
|
|
}
|
|
|
|
/** @return array<mixed> */
|
|
protected function defaultBody(): array
|
|
{
|
|
return [
|
|
'license_key' => $this->license->key,
|
|
'instance_id' => $this->license->instance->id,
|
|
];
|
|
}
|
|
}
|