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

15 lines
191 B
PHP

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