13 lines
210 B
PHP
13 lines
210 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Icefox\DTO\Attributes;
|
|
|
|
use Attribute;
|
|
|
|
#[Attribute(Attribute::TARGET_PARAMETER)]
|
|
class FromInput
|
|
{
|
|
public function __construct(public readonly string $name) {}
|
|
}
|