Ubiquity
2.5.2
php rapid development framework
Loading...
Searching...
No Matches
UToken.php
Go to the documentation of this file.
1
<?php
2
namespace
Ubiquity\security\csrf
;
3
4
class
UToken
{
5
10
private
$id
;
11
16
private
$value
;
17
18
public
function
__construct
(
$id
=
null
,
$value
=
null
) {
19
$this->
id
=
$id
;
20
$this->value =
$value
;
21
}
22
27
public
function
getId
() {
28
return
$this->id
;
29
}
30
35
public
function
getValue
() {
36
return
$this->value
;
37
}
38
43
public
function
setId
(
$id
) {
44
$this->
id
=
$id
;
45
}
46
51
public
function
setValue
(
$value
) {
52
$this->value =
$value
;
53
}
54
55
public
function
__toString
() {
56
return
$this->value
;
57
}
58
}
59
Ubiquity\security\csrf\UToken
Definition
UToken.php:4
Ubiquity\security\csrf\UToken\$value
$value
Definition
UToken.php:16
Ubiquity\security\csrf\UToken\getId
getId()
Definition
UToken.php:27
Ubiquity\security\csrf\UToken\__construct
__construct($id=null, $value=null)
Definition
UToken.php:18
Ubiquity\security\csrf\UToken\setValue
setValue($value)
Definition
UToken.php:51
Ubiquity\security\csrf\UToken\__toString
__toString()
Definition
UToken.php:55
Ubiquity\security\csrf\UToken\setId
setId($id)
Definition
UToken.php:43
Ubiquity\security\csrf\UToken\getValue
getValue()
Definition
UToken.php:35
Ubiquity\security\csrf\UToken\$id
$id
Definition
UToken.php:10
Ubiquity\security\csrf
Definition
CsrfManager.php:2
C:
Users
myadd
Documents
GitHub
ubiquity-doc-api
vendor
phpmv
ubiquity-security
src
Ubiquity
security
csrf
UToken.php
Generated on Sun Dec 10 2023 15:04:10 for
Ubiquity
by
doxygen
1.9.8