Neue Services und Klassen hinzugefügt: Projekt-Entitäten, Repository und Konfigurationsverwaltung

This commit is contained in:
2026-03-27 14:23:37 +01:00
parent 6e40a0e85e
commit 790963976a
7 changed files with 300 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
<?php
/*
* DataFromArray.php 2026-03-16 thomas
*
* Copyright (c) 2026 Thomas Schneider <thomas@inter-mundos.de>
* Alle Rechte vorbehalten.
*/
declare(strict_types=1);
namespace App\Attributes\Mapping;
use Attribute;
#[Attribute(Attribute::TARGET_PROPERTY)]
final readonly class DataFromArray
{
public function __construct(
public string|null $key,
){}
}