JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr gilour

File "UserAgentParser.php"

Full Path: /home/mipedido/web/mipedido.app/public_html/vendor/shetabit/visitor/src/Contracts/UserAgentParser.php
File size: 542 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Shetabit\Visitor\Contracts;

interface UserAgentParser
{
    /**
     * Retrieve device's name.
     *
     * @return string
     */
    public function device() : string;

    /**
     * Retrieve platform's name.
     *
     * @return string
     */
    public function platform() : string;

    /**
     * Retrieve browser's name.
     *
     * @return string
     */
    public function browser() : string;

    /**
     * Retrieve languages.
     *
     * @return array
     */
    public function languages() : array;
}