mirror of
https://github.com/elyby/oauth2-server.git
synced 2024-11-15 17:56:14 +05:30
Added code coverage ignore blocks to getRequest method
This commit is contained in:
parent
8a6823b78d
commit
6edd486b4c
@ -135,8 +135,11 @@ class AuthServer
|
|||||||
public static function getRequest()
|
public static function getRequest()
|
||||||
{
|
{
|
||||||
if (self::$request === null) {
|
if (self::$request === null) {
|
||||||
|
// @codeCoverageIgnoreStart
|
||||||
self::$request = Request::buildFromGlobals();
|
self::$request = Request::buildFromGlobals();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
// @codeCoverageIgnoreEnd
|
||||||
|
|
||||||
return self::$request;
|
return self::$request;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user