File "ProvidedNameMapper.php"
Full Path: /var/www/html/back/vendor/spatie/laravel-data/src/Mappers/ProvidedNameMapper.php
File size: 264 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Spatie\LaravelData\Mappers;
class ProvidedNameMapper implements NameMapper
{
public function __construct(protected string|int $name)
{
}
public function map(int|string $name): string|int
{
return $this->name;
}
}