/home/kueuepay/public_html/vendor/spatie/flare-client-php/src/Context/ConsoleContextProvider.php
<?php

namespace Spatie\FlareClient\Context;

class ConsoleContextProvider implements ContextProvider
{
    /**
     * @var array<string, mixed>
     */
    protected array $arguments = [];

    /**
     * @param array<string, mixed> $arguments
     */
    public function __construct(array $arguments = [])
    {
        $this->arguments = $arguments;
    }

    /**
     * @return array<int|string, mixed>
     */
    public function toArray(): array
    {
        return [
            'arguments' => $this->arguments,
        ];
    }
}
Authentication

Authentication

To access the Kueue Pay Developer API, you’ll need an API key. You can obtain your API key by logging in to your Kueue Pay merchant account and navigating to the API section. Collect Client ID , Secret ID & Merchant ID Carefully. Keep your API key confidential and do not share it publicly.

If you don't have any merchant account please Register to continue