Total Complexity | 1 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
5 | class Author implements \JsonSerializable |
||
6 | { |
||
7 | /** @var string */ |
||
8 | public $name; |
||
9 | |||
10 | /** @var string */ |
||
11 | public $key; |
||
12 | |||
13 | /** @var string */ |
||
14 | public $emailAddress; |
||
15 | |||
16 | /** @var string */ |
||
17 | public $displayName; |
||
18 | |||
19 | /** @var bool */ |
||
20 | public $active; |
||
21 | |||
22 | /** @var string */ |
||
23 | public $timeZone; |
||
24 | |||
25 | public function jsonSerialize() |
||
30 |