20250330#4

This commit is contained in:
User
2025-03-30 19:16:20 +03:00
parent f3458d1870
commit 9c1f6be326
6 changed files with 32 additions and 20 deletions

14
src/Attribute/Data.php Normal file
View File

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