]> git.mxchange.org Git - friendica.git/blobdiff - src/Network/HTTPException/NotImplementedException.php
spelling: one
[friendica.git] / src / Network / HTTPException / NotImplementedException.php
index 6c2d1e25e64b48393ca50209197c5bdb93079704..bb6368161647174e6abf80d89c157bd84f4b1e9d 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 NotImplementedException extends HTTPException
 {
-       protected $code  = 501;
-       var $httpdesc    = 'Not Implemented';
-       var $explanation = 'The server either does not recognize the request method, or it lacks the ability to fulfil the request. Usually this implies future availability (e.g., a new feature of a web-service API).';
+       protected $code        = 501;
+       protected $httpdesc    = 'Not Implemented';
+       protected $explanation = 'The server either does not recognize the request method, or it lacks the ability to fulfil the request. Usually this implies future availability (e.g., a new feature of a web-service API).';
 }