kodekeep/paddle-sdk

View on GitHub
src/Api/Endpoints/Alert/Webhooks.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

declare(strict_types=1);

/*
 * This file is part of Paddle SDK.
 *
 * (c) KodeKeep <hello@kodekeep.com>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace KodeKeep\Paddle\Api\Endpoints\Alert;

use KodeKeep\Paddle\Api\Endpoints\Endpoint;

class Webhooks extends Endpoint
{
    /**
     * @see https://developer.paddle.com/api-reference/alert-api/webhooks/webhooks
     */
    public function all(array $data = []): array
    {
        return $this->post('/2.0/alert/webhooks', $data);
    }
}