laravel-nami-api/src/Authentication/Authenticator.php

13 lines
259 B
PHP

<?php
namespace Zoomyboy\LaravelNami\Authentication;
use Illuminate\Http\Client\PendingRequest;
abstract class Authenticator {
abstract public function login(int $mglnr, string $password): self;
abstract public function http(): PendingRequest;
}