X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FNetwork%2FHTTPException%2FBadRequestException.php;h=41b7714613514762172525aa45924b46574bc66b;hb=46cd39fb34613f4b331793f19c0e562f93125066;hp=dd1dc191b81f99d0bd3a770d0b55d9fd34085051;hpb=c845415a99ebc348103815a7b2c55b15c75cdd24;p=friendica.git diff --git a/src/Network/HTTPException/BadRequestException.php b/src/Network/HTTPException/BadRequestException.php index dd1dc191b8..41b7714613 100644 --- a/src/Network/HTTPException/BadRequestException.php +++ b/src/Network/HTTPException/BadRequestException.php @@ -1,4 +1,23 @@ . + * + */ namespace Friendica\Network\HTTPException; @@ -6,5 +25,7 @@ use Friendica\Network\HTTPException; class BadRequestException extends HTTPException { - var $httpcode = 400; + protected $code = 400; + protected $httpdesc = 'Bad Request'; + protected $explanation = 'The server cannot or will not process the request due to an apparent client error.'; }