summaryrefslogtreecommitdiff
path: root/src/Credentials.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/Credentials.php')
-rw-r--r--src/Credentials.php16
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,
+ ) {
+ }
+}