]> git.mxchange.org Git - friendica.git/blobdiff - src/Capabilities/ICanHandleRequests.php
Merge pull request #10987 from annando/api4
[friendica.git] / src / Capabilities / ICanHandleRequests.php
index 277340464394bfe7eef860949740db517a99e50f..23feec2b73a4c3b128e1a40d157e7c9a013a42f8 100644 (file)
@@ -7,14 +7,6 @@ namespace Friendica\Capabilities;
  */
 interface ICanHandleRequests
 {
-       /**
-        * Initialization method common to both content() and post()
-        *
-        * Extend this method if you need to do any shared processing before both
-        * content() or post()
-        */
-       public function init();
-
        /**
         * Module GET method to display raw content from technical endpoints
         *
@@ -56,13 +48,6 @@ interface ICanHandleRequests
         */
        public function post();
 
-       /**
-        * Called after post()
-        *
-        * Unknown purpose
-        */
-       public function afterpost();
-
        /**
         * Module PUT method to process submitted data
         *