1 | <?php |
||
7 | class WishlistToken implements WishlistTokenInterface |
||
8 | { |
||
9 | protected $value; |
||
10 | |||
11 | public function __construct(?string $value = null) |
||
19 | |||
20 | public function getValue(): string |
||
24 | |||
25 | public function setValue(string $value): void |
||
29 | |||
30 | public function __toString() |
||
34 | |||
35 | private function generate($length): string |
||
49 | } |
||
50 |