diff options
| author | David T. Sadler <davidtsadler@googlemail.com> | 2026-08-09 20:04:39 +0100 |
|---|---|---|
| committer | David T. Sadler <davidtsadler@googlemail.com> | 2026-08-09 20:04:39 +0100 |
| commit | b9c4f1dcf1333c14e2d1b67561ec7a5f955baa6e (patch) | |
| tree | 610536953be739d0778f19c90c477f080a24718a /src/Credentials.php | |
Diffstat (limited to 'src/Credentials.php')
| -rw-r--r-- | src/Credentials.php | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/Credentials.php b/src/Credentials.php new file mode 100644 index 0000000..bcc4a53 --- /dev/null +++ b/src/Credentials.php @@ -0,0 +1,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, + ) { + } +} |
