change gitignore

This commit is contained in:
2025-09-02 13:57:30 +02:00
parent d8b89fc4fe
commit 1bcb7eb180
9363 changed files with 1088355 additions and 608 deletions
+19
View File
@@ -0,0 +1,19 @@
<?php
namespace Lab404\Impersonate;
use Illuminate\Support\Facades\Facade;
use Lab404\Impersonate\Services\ImpersonateManager;
class Impersonate extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return ImpersonateManager::class;
}
}