1 | <?php declare(strict_types=1); |
||
30 | abstract class RedirectUri extends DatabaseItem implements RedirectUriInterface |
||
31 | { |
||
32 | /** Field name */ |
||
33 | const FIELD_ID = 'id_redirect_uri'; |
||
34 | |||
35 | /** Field name */ |
||
36 | const FIELD_ID_CLIENT = Client::FIELD_ID; |
||
37 | |||
38 | /** Field name */ |
||
39 | const FIELD_VALUE = 'value'; |
||
40 | |||
41 | /** |
||
42 | * @var int|null |
||
43 | */ |
||
44 | private $identifierField; |
||
45 | |||
46 | /** |
||
47 | * @var string|null |
||
48 | */ |
||
49 | private $clientIdentifierField; |
||
50 | |||
51 | /** |
||
52 | * @var string|null |
||
53 | */ |
||
54 | private $valueField; |
||
55 | |||
56 | /** |
||
57 | * @var Uri|null |
||
58 | */ |
||
59 | private $uriObject; |
||
60 | |||
61 | /** |
||
62 | * Constructor. |
||
63 | */ |
||
64 | 21 | public function __construct() |
|
73 | |||
74 | /** |
||
75 | * @inheritdoc |
||
76 | */ |
||
77 | 2 | public function getIdentifier(): ?int |
|
81 | |||
82 | /** |
||
83 | * @inheritdoc |
||
84 | */ |
||
85 | 17 | public function setIdentifier(int $identifier): RedirectUriInterface |
|
91 | |||
92 | /** |
||
93 | * @inheritdoc |
||
94 | */ |
||
95 | 19 | public function getClientIdentifier(): ?string |
|
99 | |||
100 | /** |
||
101 | * @inheritdoc |
||
102 | */ |
||
103 | 18 | public function setClientIdentifier(string $identifier): RedirectUriInterface |
|
109 | |||
110 | /** |
||
111 | * @inheritdoc |
||
112 | */ |
||
113 | 19 | public function getValue(): ?string |
|
117 | |||
118 | /** |
||
119 | * @inheritdoc |
||
120 | */ |
||
121 | 19 | public function setValue(string $uri): RedirectUriInterface |
|
138 | |||
139 | /** |
||
140 | * @inheritdoc |
||
141 | */ |
||
142 | 1 | public function getUri(): UriInterface |
|
146 | |||
147 | /** |
||
148 | * @inheritdoc |
||
149 | */ |
||
150 | 17 | public function setCreatedAt(DateTimeInterface $createdAt): RedirectUriInterface |
|
157 | |||
158 | /** |
||
159 | * @inheritdoc |
||
160 | */ |
||
161 | 1 | public function setUpdatedAt(DateTimeInterface $createdAt): RedirectUriInterface |
|
168 | } |
||
169 |