]> git.mxchange.org Git - friendica.git/blobdiff - src/Network/HTTPException/ConflictException.php
spelling: one
[friendica.git] / src / Network / HTTPException / ConflictException.php
index 01cfc8dce0428ce26ce34c57bfd05b834c4948f6..915f6b1834473ed5c731d38b7dbbc473fd49454c 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 ConflictException extends HTTPException
 {
-       protected $code  = 409;
-       var $httpdesc    = 'Conflict ';
-       var $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.';
+       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.';
 }