Your IP : 216.73.217.77


Current Path : /home/users/unlimited/www/foodbank.codeskitter.site/vendor/stevebauman/location/src/
Upload File :
Current File : /home/users/unlimited/www/foodbank.codeskitter.site/vendor/stevebauman/location/src/Request.php

<?php

namespace Stevebauman\Location;

interface Request
{
    /**
     * Get the client IP address.
     */
    public function getIp(): string;

    /**
     * Set the IP address to resolve.
     */
    public function setIp(string $ip = null): static;

    /**
     * Get a header from the request.
     */
    public function getHeader(string $key = null, string|array $default = null): string|array|null;
}