X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FNetwork%2FHTTPException%2FUnauthorizedException.php;h=dfe8719f9f68d6c80e1f9da8333e0e78c4a19953;hb=46cd39fb34613f4b331793f19c0e562f93125066;hp=a3015d412da0648e32dccdcf5bd905288582914d;hpb=c845415a99ebc348103815a7b2c55b15c75cdd24;p=friendica.git diff --git a/src/Network/HTTPException/UnauthorizedException.php b/src/Network/HTTPException/UnauthorizedException.php index a3015d412d..dfe8719f9f 100644 --- a/src/Network/HTTPException/UnauthorizedException.php +++ b/src/Network/HTTPException/UnauthorizedException.php @@ -1,4 +1,23 @@ . + * + */ namespace Friendica\Network\HTTPException; @@ -6,5 +25,7 @@ use Friendica\Network\HTTPException; class UnauthorizedException extends HTTPException { - var $httpcode = 401; + protected $code = 401; + protected $httpdesc = 'Unauthorized'; + protected $explanation = 'Authentication is required and has failed or has not yet been provided.'; }