File "S3DoesntSupportMultipleFileUploads.php"

Full Path: /home/fundopuh/trader.fxex.org/vendor/livewire/livewire/src/Exceptions/S3DoesntSupportMultipleFileUploads.php
File size: 356 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Livewire\Exceptions;

class S3DoesntSupportMultipleFileUploads extends \Exception
{
    use BypassViewHandler;

    public function __construct()
    {
        parent::__construct(
            "S3 temporary file upload driver only supports single file uploads. Remove the [multiple] HTML attribute from your input tag."
        );
    }
}