Failed Conditions
Push — master ( 7c3864...930f9b )
by Florent
14:15
created

Consent::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 7

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 7
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 4
1
<?php
2
3
declare(strict_types=1);
4
5
/*
6
 * The MIT License (MIT)
7
 *
8
 * Copyright (c) 2014-2018 Spomky-Labs
9
 *
10
 * This software may be modified and distributed under the terms
11
 * of the MIT license.  See the LICENSE file for details.
12
 */
13
14
namespace OAuth2Framework\Component\AuthorizationEndpoint\Consent;
15
16
class Consent
17
{
18
    private $clientId;
19
    private $userAccountId;
20
    private $requestedScope;
21
    private $grantedScope;
22
    private $requestedClaims;
23
    private $grantedClaims;
24
25
    public function __construct(string $clientId, string $userAccountId, string $scope, string $claims)
26
    {
27
        $this->clientId = $clientId;
28
        $this->userAccountId = $userAccountId;
29
        $this->requestedScope = $scope;
30
        $this->requestedClaims = $claims;
31
    }
32
33
    public function getClientId(): string
34
    {
35
        return $this->clientId;
36
    }
37
38
    public function getUserAccountId(): string
39
    {
40
        return $this->userAccountId;
41
    }
42
43
    public function getRequestedScope(): string
44
    {
45
        return $this->requestedScope;
46
    }
47
48
    public function getRequestedClaims(): string
49
    {
50
        return $this->requestedClaims;
51
    }
52
53
    public function getGrantedScope(): string
54
    {
55
        return $this->grantedScope;
56
    }
57
58
    public function setGrantedScope(string $grantedScope): void
59
    {
60
        $this->grantedScope = $grantedScope;
61
    }
62
63
    public function getGrantedClaims(): string
64
    {
65
        return $this->grantedClaims;
66
    }
67
68
    public function setGrantedClaims(string $grantedClaims): void
69
    {
70
        $this->grantedClaims = $grantedClaims;
71
    }
72
}
73