File "FieldsPartialSegment.php"
Full Path: /var/www/html/back/vendor/spatie/laravel-data/src/Support/Partials/Segments/FieldsPartialSegment.php
File size: 300 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Spatie\LaravelData\Support\Partials\Segments;
class FieldsPartialSegment extends PartialSegment
{
public function __construct(public readonly array $fields)
{
}
public function __toString(): string
{
return '{'.implode(',', $this->fields).'}';
}
}