aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/notification/type/type_interface.php
diff options
context:
space:
mode:
authorMatt Friedman <maf675@gmail.com>2015-03-27 00:02:20 -0700
committerMatt Friedman <maf675@gmail.com>2015-03-27 00:02:20 -0700
commitdbb538afbdce345dfc61b06ec6a84313c1141284 (patch)
tree17e7699073aab3dc8861a5feb657bb3dc9d369f8 /phpBB/phpbb/notification/type/type_interface.php
parent9a9a665a0a4f34707acffcd5efbe2e2e62660758 (diff)
downloadforums-dbb538afbdce345dfc61b06ec6a84313c1141284.tar
forums-dbb538afbdce345dfc61b06ec6a84313c1141284.tar.gz
forums-dbb538afbdce345dfc61b06ec6a84313c1141284.tar.bz2
forums-dbb538afbdce345dfc61b06ec6a84313c1141284.tar.xz
forums-dbb538afbdce345dfc61b06ec6a84313c1141284.zip
[ticket/13725] Coding guidelines: static public
PHPBB3-13725
Diffstat (limited to 'phpBB/phpbb/notification/type/type_interface.php')
-rw-r--r--phpBB/phpbb/notification/type/type_interface.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/phpbb/notification/type/type_interface.php b/phpBB/phpbb/notification/type/type_interface.php
index 5c5a110836..8844ce1a38 100644
--- a/phpBB/phpbb/notification/type/type_interface.php
+++ b/phpBB/phpbb/notification/type/type_interface.php
@@ -37,14 +37,14 @@ interface type_interface
*
* @param array $type_data The type specific data
*/
- public static function get_item_id($type_data);
+ static public function get_item_id($type_data);
/**
* Get the id of the parent
*
* @param array $type_data The type specific data
*/
- public static function get_item_parent_id($type_data);
+ static public function get_item_parent_id($type_data);
/**
* Is this type available to the current user (defines whether or not it will be shown in the UCP Edit notification options)