X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FNetwork%2FHTTPException%2FLenghtRequiredException.php;h=8a827626e6a2d39bdf5193e3cf41bc6b3da6aaee;hb=3842f02b021f2f32dbe6707c22af5760c3353dfa;hp=1f2f0f16bcb748eaef98f33a096d6bfca7fbd206;hpb=c845415a99ebc348103815a7b2c55b15c75cdd24;p=friendica.git diff --git a/src/Network/HTTPException/LenghtRequiredException.php b/src/Network/HTTPException/LenghtRequiredException.php index 1f2f0f16bc..8a827626e6 100644 --- a/src/Network/HTTPException/LenghtRequiredException.php +++ b/src/Network/HTTPException/LenghtRequiredException.php @@ -1,4 +1,23 @@ . + * + */ namespace Friendica\Network\HTTPException; @@ -6,5 +25,7 @@ use Friendica\Network\HTTPException; class LenghtRequiredException extends HTTPException { - var $httpcode = 411; + protected $code = 411; + protected $httpdesc = 'Length Required'; + protected $explanation = 'The request did not specify the length of its content, which is required by the requested resource.'; }