]> git.mxchange.org Git - friendica.git/blobdiff - src/Network/HTTPException/NoContentException.php
Merge pull request #12063 from Quix0r/fixes/type-hints-reformatting
[friendica.git] / src / Network / HTTPException / NoContentException.php
index 90d9d2ae6aa73334f5e8215acbcc2c32a731bebe..2dab62c9c04968fbd017068622e0703712fe8ac3 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,6 +25,6 @@ use Friendica\Network\HTTPException;
 
 class NoContentException extends HTTPException
 {
-       protected $code = 204;
-       var $httpdesc   = 'No Content';
+       protected $code     = 204;
+       protected $httpdesc = 'No Content';
 }