security.txt + bugfixes
This commit is contained in:
16
Core/Objects/DatabaseEntity/Attribute/UsePropertiesOf.php
Normal file
16
Core/Objects/DatabaseEntity/Attribute/UsePropertiesOf.php
Normal file
@@ -0,0 +1,16 @@
|
||||
<?php
|
||||
|
||||
namespace Core\Objects\DatabaseEntity\Attribute;
|
||||
|
||||
#[\Attribute(\Attribute::TARGET_CLASS)] class UsePropertiesOf {
|
||||
|
||||
private string $class;
|
||||
|
||||
public function __construct(string $class) {
|
||||
$this->class = $class;
|
||||
}
|
||||
|
||||
public function getClass(): string {
|
||||
return $this->class;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user