This commit is contained in:
philipp lang 2024-02-24 00:09:06 +01:00
parent 8e0c56641a
commit 95985a00e5
1 changed files with 2 additions and 2 deletions

View File

@ -6,6 +6,8 @@ use Illuminate\Http\Client\PendingRequest;
abstract class Authenticator
{
protected static string $path = __DIR__ . '/../../.cookies';
abstract public function login(int $mglnr, string $password): self;
abstract public function purge(): void;
@ -16,8 +18,6 @@ abstract class Authenticator
abstract public function refresh(): void;
protected static string $path = __DIR__.'/../../.cookies';
public static function setPath(string $path): void
{
static::$path = $path;