]> git.mxchange.org Git - friendica.git/blobdiff - src/Network/HTTPException/ConflictException.php
Merge pull request #12063 from Quix0r/fixes/type-hints-reformatting
[friendica.git] / src / Network / HTTPException / ConflictException.php
index 573ffe2b25df1faf1b8b225bfe85f7fc67dcd8ba..a5263299fbc3b87ce883c6492b711facabeaff89 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,7 @@ use Friendica\Network\HTTPException;
 
 class ConflictException extends HTTPException
 {
-       protected $code = 409;
+       protected $code        = 409;
+       protected $httpdesc    = 'Conflict ';
+       protected $explanation = 'Indicates that the request could not be processed because of conflict in the current state of the resource, such as an edit conflict between multiple simultaneous updates.';
 }