We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
Total Complexity | 6 |
Total Lines | 64 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
15 | class Token extends \TYPO3\CMS\Extbase\DomainObject\AbstractValueObject |
||
16 | { |
||
17 | |||
18 | /** |
||
19 | * @var string |
||
20 | */ |
||
21 | protected $token; |
||
22 | |||
23 | /** |
||
24 | * @var string |
||
25 | */ |
||
26 | protected $options; |
||
27 | |||
28 | /** |
||
29 | * @var string |
||
30 | */ |
||
31 | protected $ident; |
||
32 | |||
33 | /** |
||
34 | * @return string |
||
35 | */ |
||
36 | public function getToken(): string |
||
37 | { |
||
38 | return $this->token; |
||
39 | } |
||
40 | |||
41 | /** |
||
42 | * @param string $token |
||
43 | */ |
||
44 | public function setToken(string $token): void |
||
45 | { |
||
46 | $this->token = $token; |
||
47 | } |
||
48 | |||
49 | /** |
||
50 | * @return string |
||
51 | */ |
||
52 | public function getOptions(): string |
||
55 | } |
||
56 | |||
57 | /** |
||
58 | * @param string $options |
||
59 | */ |
||
60 | public function setOptions(string $options): void |
||
61 | { |
||
62 | $this->options = $options; |
||
63 | } |
||
64 | |||
65 | /** |
||
66 | * @return string |
||
67 | */ |
||
68 | public function getIdent(): string |
||
69 | { |
||
70 | return $this->ident; |
||
71 | } |
||
72 | |||
73 | /** |
||
74 | * @param string $ident |
||
75 | */ |
||
76 | public function setIdent(string $ident): void |
||
79 | } |
||
80 | |||
81 | } |