File "StudlyCaseMapper.php"
Full Path: /var/www/html/back/vendor/spatie/laravel-data/src/Mappers/StudlyCaseMapper.php
File size: 225 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Spatie\LaravelData\Mappers;
use Illuminate\Support\Str;
class StudlyCaseMapper implements NameMapper
{
public function map(int|string $name): string|int
{
return Str::studly($name);
}
}