]> git.mxchange.org Git - friendica.git/blobdiff - src/Network/HTTPException/UnprocessableEntityException.php
Merge pull request #12063 from Quix0r/fixes/type-hints-reformatting
[friendica.git] / src / Network / HTTPException / UnprocessableEntityException.php
index 29b0d3158efe36949fd2e29f2f74baf0b12b3f93..adfed04bebf838b0ccb96ab916adfa42dfe81520 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 UnprocessableEntityException extends HTTPException
 {
-       protected $code  = 422;
-       var $httpdesc    = 'Unprocessable Entity';
-       var $explanation = 'The request was well-formed but was unable to be followed due to semantic errors.';
+       protected $code        = 422;
+       protected $httpdesc    = 'Unprocessable Entity';
+       protected $explanation = 'The request was well-formed but was unable to be followed due to semantic errors.';
 }