Primo commit

This commit is contained in:
Francesco Picone
2026-04-05 19:26:04 +02:00
commit 701f479b7f
135 changed files with 21445 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
<?php
namespace Facades\Livewire\Features\SupportFileUploads;
use Illuminate\Support\Facades\Facade;
/**
* @mixin \Livewire\Features\SupportFileUploads\GenerateSignedUploadUrl
*/
class GenerateSignedUploadUrl extends Facade
{
/**
* Get the registered name of the component.
*/
protected static function getFacadeAccessor(): string
{
return 'Livewire\Features\SupportFileUploads\GenerateSignedUploadUrl';
}
}