a8e29d0305
Signed-off-by: Sebastian Krupinski <krupinski01@gmail.com>
19 lines
383 B
PHP
19 lines
383 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace KTXC\Security\Event;
|
|
|
|
interface SecurityRequestEventInterface extends SecurityEventInterface
|
|
{
|
|
public function getIpAddress(): ?string;
|
|
|
|
public function getDeviceFingerprint(): ?string;
|
|
|
|
public function getUserAgent(): ?string;
|
|
|
|
public function getRequestPath(): ?string;
|
|
|
|
public function getRequestMethod(): ?string;
|
|
}
|