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
@@ -0,0 +1,13 @@
<?php
namespace Lab404\Impersonate\Exceptions;
use Throwable;
class MissingUserProvider extends \Exception
{
public function __construct(string $guard, $message = "", $code = 0, Throwable $previous = null)
{
parent::__construct(sprintf('Missing user provider for guard %s', $guard), $code, $previous);
}
}