22 lines
379 B
PHP
22 lines
379 B
PHP
<?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,
|
|
){}
|
|
}
|