File "NestedPartialSegment.php"

Full Path: /var/www/html/back/vendor/spatie/laravel-data/src/Support/Partials/Segments/NestedPartialSegment.php
File size: 276 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Spatie\LaravelData\Support\Partials\Segments;

class NestedPartialSegment extends PartialSegment
{
    public function __construct(public readonly string $field)
    {
    }

    public function __toString(): string
    {
        return $this->field;
    }
}