]> git.mxchange.org Git - friendica.git/blobdiff - src/Network/HTTPException/ConflictException.php
Merge pull request #10956 from annando/escapetags
[friendica.git] / src / Network / HTTPException / ConflictException.php
index f7e2678359345580ac8daca72c94e06f127f53c8..2f7a892e2597bc3f1995082e10358819808bc3e4 100644 (file)
@@ -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.';
 }