Total Complexity | 2 |
Total Lines | 32 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | trait HasIdentifier |
||
10 | { |
||
11 | /** |
||
12 | * Undocumented variable |
||
13 | * |
||
14 | * @var int|string|null |
||
15 | */ |
||
16 | public $id; |
||
17 | |||
18 | /** |
||
19 | * Undocumented function |
||
20 | * |
||
21 | * @param int|string|null $resourceId |
||
22 | * @return static |
||
23 | */ |
||
24 | 25 | public function setId($resourceId) |
|
29 | } |
||
30 | |||
31 | /** |
||
32 | * Undocumented function |
||
33 | * |
||
34 | * @return static |
||
35 | */ |
||
36 | 11 | public function fakeIdentifier() |
|
43 |