summaryrefslogtreecommitdiff
path: root/src/Credentials.php
blob: bcc4a53fa3d6f4acd48dd364ff20f639f9e04e2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php

declare(strict_types=1);

namespace TCB;

final class Credentials
{
    public function __construct(
        public readonly string $clientID,
        public readonly string $clientSecret,
        public readonly string $redirectURI,
        public readonly string $state,
    ) {
    }
}