sonarrradarrplexorganizrnginxdashboardmuximuxlandingpagestartpagelandinghtpcserverhomepagesabnzbdheimdallembycouchpotatonzbgetbookmarkapplication-dashboard
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
397 B
22 lines
397 B
<?php
|
|
|
|
namespace Http\Message;
|
|
|
|
use Psr\Http\Message\RequestInterface;
|
|
|
|
/**
|
|
* Authenticate a PSR-7 Request.
|
|
*
|
|
* @author Márk Sági-Kazár <mark.sagikazar@gmail.com>
|
|
*/
|
|
interface Authentication
|
|
{
|
|
/**
|
|
* Authenticates a request.
|
|
*
|
|
* @param RequestInterface $request
|
|
*
|
|
* @return RequestInterface
|
|
*/
|
|
public function authenticate(RequestInterface $request);
|
|
}
|
|
|