We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ca4ef6 commit 344a1acCopy full SHA for 344a1ac
1 file changed
src/Config/Client.php
@@ -0,0 +1,27 @@
1
+<?php declare(strict_types=1);
2
+
3
+namespace Pdsinterop\Solid\Auth\Config;
4
5
+class Client
6
+{
7
+ /** @var string */
8
+ private $identifier;
9
10
+ private $secret;
11
12
+ public function getIdentifier() : string
13
+ {
14
+ return $this->identifier;
15
+ }
16
17
+ public function getSecret() : string
18
19
+ return $this->secret;
20
21
22
+ final public function __construct(string $identifier, string $secret)
23
24
+ $this->identifier = $identifier;
25
+ $this->secret = $secret;
26
27
+}
0 commit comments