Files
rmphp-storage/src/Attribute/Data.php
2025-03-30 19:16:20 +03:00

15 lines
185 B
PHP

<?php
namespace Rmphp\Storage\Attribute;
use Attribute;
#[Attribute(Attribute::TARGET_CLASS)]
class Data {
public function __construct(
public bool $ignorEmpty = false,
) {}
}