change gitignore
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user