File "MapInputName.php"

Full Path: /var/www/html/back/vendor/spatie/laravel-data/src/Attributes/MapInputName.php
File size: 225 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Spatie\LaravelData\Attributes;

use Attribute;

#[Attribute(Attribute::TARGET_CLASS | Attribute::TARGET_PROPERTY)]
class MapInputName
{
    public function __construct(public string|int $input)
    {
    }
}