blob: e3dd1a5f44eae6212d5c1f1288a8d5ad909617d8 (
plain)
1
2
3
4
5
6
7
8
9
10
|
<?php
namespace mystic\forum\attributes;
#[\Attribute(\Attribute::TARGET_PROPERTY)]
class DefaultValue {
public function __construct(
public readonly string $defaultValue,
) {}
}
|