/home/smartonegroup/www/veroserv/vendor/openai-php/client/src/Resources/Concerns/Transportable.php
<?php

declare(strict_types=1);

namespace OpenAI\Resources\Concerns;

use OpenAI\Contracts\TransporterContract;

trait Transportable
{
    public function __construct(private readonly TransporterContract $transporter)
    {
        // ..
    }
}