X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FNetwork%2FHTTPException%2FGoneException.php;h=9cab0f22f755654489c570b2944eb11837763a06;hb=46cd39fb34613f4b331793f19c0e562f93125066;hp=42e19e89da6e50933f2ce8832e8b50c603047a52;hpb=25fbdd21c5a4bbf38c52f9275c126e9ef687b61d;p=friendica.git diff --git a/src/Network/HTTPException/GoneException.php b/src/Network/HTTPException/GoneException.php index 42e19e89da..9cab0f22f7 100644 --- a/src/Network/HTTPException/GoneException.php +++ b/src/Network/HTTPException/GoneException.php @@ -1,4 +1,23 @@ . + * + */ namespace Friendica\Network\HTTPException; @@ -6,5 +25,7 @@ use Friendica\Network\HTTPException; class GoneException extends HTTPException { - var $httpcode = 410; + protected $code = 410; + protected $httpdesc = 'Gone'; + protected $explanation = 'Indicates that the resource requested is no longer available and will not be available again.'; }