]> git.mxchange.org Git - friendica.git/blobdiff - src/Network/HTTPException/ForbiddenException.php
spelling: one
[friendica.git] / src / Network / HTTPException / ForbiddenException.php
index a1dafa9a5ba33474e76463e4e8a5c24c55aba8dd..5fc584507c724fc89f1183a3254139ae8fd918bb 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 ForbiddenException extends HTTPException
 {
-       protected $code  = 403;
-       var $httpdesc    = 'Forbidden';
-       var $explanation = 'The request was valid, but the server is refusing action. The user might not have the necessary permissions for a resource, or may need an account.';
+       protected $code        = 403;
+       protected $httpdesc    = 'Forbidden';
+       protected $explanation = 'The request was valid, but the server is refusing action. The user might not have the necessary permissions for a resource, or may need an account.';
 }