File "InvalidDataCollectionOperation.php"

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

<?php

namespace Spatie\LaravelData\Exceptions;

use Exception;

class InvalidDataCollectionOperation extends Exception
{
    public static function create(): self
    {
        return new self('Cannot execute an array operation on this type of collection');
    }
}