15 lines
191 B
PHP
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,
|
|
) {}
|
|
|
|
}
|