]> git.mxchange.org Git - friendica.git/blobdiff - src/Network/HTTPException/LenghtRequiredException.php
The friendica constants have been moved to the app class
[friendica.git] / src / Network / HTTPException / LenghtRequiredException.php
index 3818f681aea3c9661c6ad9de43b89b5aff2b0862..8a827626e6a2d39bdf5193e3cf41bc6b3da6aaee 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2010-2021, the Friendica project
+ * @copyright Copyright (C) 2010-2022, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
@@ -25,7 +25,7 @@ use Friendica\Network\HTTPException;
 
 class LenghtRequiredException extends HTTPException
 {
-       protected $code  = 411;
-       var $httpdesc    = 'Length Required';
-       var $explanation = 'The request did not specify the length of its content, which is required by the requested resource.';
+       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.';
 }