X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FNetwork%2FHTTPException%2FUnprocessableEntityException.php;h=adfed04bebf838b0ccb96ab916adfa42dfe81520;hb=db82bdfc44b09e7dfa872fb7ccca2b9571c38083;hp=02852e2f929e4e821a8a5a769c74c59a7b12be6d;hpb=15a857e4117a5e1e6e092709b3c07614934b09fb;p=friendica.git diff --git a/src/Network/HTTPException/UnprocessableEntityException.php b/src/Network/HTTPException/UnprocessableEntityException.php index 02852e2f92..adfed04beb 100644 --- a/src/Network/HTTPException/UnprocessableEntityException.php +++ b/src/Network/HTTPException/UnprocessableEntityException.php @@ -1,4 +1,23 @@ . + * + */ namespace Friendica\Network\HTTPException; @@ -6,5 +25,7 @@ use Friendica\Network\HTTPException; class UnprocessableEntityException extends HTTPException { - var $httpcode = 422; + protected $code = 422; + protected $httpdesc = 'Unprocessable Entity'; + protected $explanation = 'The request was well-formed but was unable to be followed due to semantic errors.'; }