laravel-data/src/Attributes/FromInput.php
2026-02-18 19:19:07 -03:00

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) {}
}