PATH:
home
/
nappmpmd
/
mamza.xyz
/
wp-content
/
plugins
/
adfoxly
/
vendor
/
bugsnag
/
bugsnag
/
src
/
Request
<?php namespace Bugsnag\Request; interface RequestInterface { /** * Are we currently processing a request? * * @return bool */ public function isRequest(); /** * Get the session data. * * @return array */ public function getSession(); /** * Get the cookies. * * @return array */ public function getCookies(); /** * Get the request formatted as meta data. * * @return array */ public function getMetaData(); /** * Get the request context. * * @return string|null */ public function getContext(); /** * Get the request user id. * * @return string|null */ public function getUserId(); }
[+]
..
[-] NullRequest.php
[edit]
[-] RequestInterface.php
[edit]
[-] BasicResolver.php
[edit]
[-] PhpRequest.php
[edit]
[-] ConsoleRequest.php
[edit]
[-] ResolverInterface.php
[edit]