]> git.mxchange.org Git - friendica.git/blobdiff - src/Network/HTTPException/UnauthorizedException.php
spelling: one
[friendica.git] / src / Network / HTTPException / UnauthorizedException.php
index ad6adfd4234aa62f74a85409025a258220c6c21f..dfe8719f9f68d6c80e1f9da8333e0e78c4a19953 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2010-2021, the Friendica project
+ * @copyright Copyright (C) 2010-2023, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
@@ -25,7 +25,7 @@ use Friendica\Network\HTTPException;
 
 class UnauthorizedException extends HTTPException
 {
-       protected $code  = 401;
-       var $httpdesc    = 'Unauthorized';
-       var $explanation = 'Authentication is required and has failed or has not yet been provided.';
+       protected $code        = 401;
+       protected $httpdesc    = 'Unauthorized';
+       protected $explanation = 'Authentication is required and has failed or has not yet been provided.';
 }