- Set default to empty string

This commit is contained in:
Dave Mc Nicoll 2023-04-13 15:53:25 -04:00
parent f33fb69150
commit dc4dcd89f5

@ -5,7 +5,7 @@ namespace Notes\Security\Attribute;
#[\Attribute(\Attribute::IS_REPEATABLE | \Attribute::TARGET_METHOD | \Attribute::TARGET_CLASS)]
class Taxus implements \Notes\Attribute {
public function __construct(
public string $module,
public string $privilege = "",
public string $module = "",
) {}
}