]> 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 896261be7c99a39725e498f8467de338287ec5ff..2dab62c9c04968fbd017068622e0703712fe8ac3 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2020, Friendica
+ * @copyright Copyright (C) 2010-2022, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
@@ -25,5 +25,6 @@ use Friendica\Network\HTTPException;
 
 class NoContentException extends HTTPException
 {
-       protected $code = 204;
+       protected $code     = 204;
+       protected $httpdesc = 'No Content';
 }