File "MaxTransformationDepthReached.php"

Full Path: /var/www/html/back/vendor/spatie/laravel-data/src/Exceptions/MaxTransformationDepthReached.php
File size: 261 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Spatie\LaravelData\Exceptions;

use Exception;

class MaxTransformationDepthReached extends Exception
{
    public static function create(int $depth): self
    {
        return new self("Max transformation depth of {$depth} reached.");
    }
}