Total Complexity | 4 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
7 | trait Encryptable |
||
8 | { |
||
9 | /** |
||
10 | * Set the value attribute |
||
11 | * |
||
12 | * @param string $value |
||
13 | * @return void |
||
14 | */ |
||
15 | public function setValueAttribute(string $value) |
||
21 | } |
||
22 | |||
23 | /** |
||
24 | * Get the value attribute. |
||
25 | * |
||
26 | * @param string $value |
||
27 | * @return string |
||
28 | */ |
||
29 | public function getValueAttribute(string $value) |
||
34 |