| @@ -3,13 +3,24 @@ | ||
| 3 | 3 | declare(strict_types=1); |
| 4 | 4 | |
| 5 | 5 | namespace UserAccessManager\Form; |
| 6 | 6 | |
| 7 | +/** | |
| 8 | + * Trait valueTrait | |
| 9 | + * | |
| 10 | + * @package UserAccessManager\Form | |
| 11 | + */ | |
| 7 | 12 | trait ValueTrait |
| 8 | 13 | { |
| 9 | - protected mixed $value; | |
| 14 | + /** | |
| 15 | + * @var mixed | |
| 16 | + */ | |
| 17 | + protected $value; | |
| 10 | 18 | |
| 11 | - public function getValue(): mixed | |
| 19 | + /** | |
| 20 | + * @return mixed|null | |
| 21 | + */ | |
| 22 | + public function getValue() | |
| 12 | 23 | { |
| 13 | 24 | return $this->value; |
| 14 | 25 | } |
| 15 | 26 | } |