]> git.mxchange.org Git - friendica.git/blobdiff - src/BaseModule.php
parameters now are having a default value and are optional
[friendica.git] / src / BaseModule.php
index 3bc2ac9ff277a324d7a6095978596285296bf1d1..2b9ebdb14e2d1e0fc78371101712c34490f554e8 100644 (file)
@@ -22,7 +22,7 @@ abstract class BaseModule extends BaseObject
         * Extend this method if you need to do any shared processing before both
         * content() or post()
         */
-       public static function init($parameters)
+       public static function init(array $parameters = [])
        {
        }
 
@@ -32,7 +32,7 @@ abstract class BaseModule extends BaseObject
         * Extend this method if the module is supposed to return communication data,
         * e.g. from protocol implementations.
         */
-       public static function rawContent($parameters)
+       public static function rawContent(array $parameters = [])
        {
        }
 
@@ -45,7 +45,7 @@ abstract class BaseModule extends BaseObject
         *
         * @return string
         */
-       public static function content($parameters)
+       public static function content(array $parameters = [])
        {
                $o = '';
 
@@ -58,7 +58,7 @@ abstract class BaseModule extends BaseObject
         * Extend this method if the module is supposed to process POST requests.
         * Doesn't display any content
         */
-       public static function post($parameters)
+       public static function post(array $parameters = [])
        {
        }
 
@@ -67,7 +67,7 @@ abstract class BaseModule extends BaseObject
         *
         * Unknown purpose
         */
-       public static function afterpost($parameters)
+       public static function afterpost(array $parameters = [])
        {
        }