[ticket/11700] With namespaces interface will no longer be a valid classname

PHPBB3-11700
This commit is contained in:
Nils Adermann 2013-07-14 12:25:28 -04:00
parent c15bde161a
commit b81613e5e5
11 changed files with 14 additions and 14 deletions

View file

@ -20,7 +20,7 @@ if (!defined('IN_PHPBB'))
* *
* @package auth * @package auth
*/ */
interface phpbb_auth_provider_interface interface phpbb_auth_provider_provider_interface
{ {
/** /**
* Checks whether the user is currently identified to the authentication * Checks whether the user is currently identified to the authentication
@ -98,7 +98,7 @@ interface phpbb_auth_provider_interface
* into phpBB. * into phpBB.
* *
* @param array $user * @param array $user
* @return boolean true if the given user is authenticated, false if the * @return boolean true if the given user is authenticated, false if the
* session should be closed, or null if not implemented. * session should be closed, or null if not implemented.
*/ */
public function validate_session($user); public function validate_session($user);

View file

@ -19,7 +19,7 @@ if (!defined('IN_PHPBB'))
* Interface for avatar drivers * Interface for avatar drivers
* @package phpBB3 * @package phpBB3
*/ */
interface phpbb_avatar_driver_interface interface phpbb_avatar_driver_driver_interface
{ {
/** /**
* Returns the name of the driver. * Returns the name of the driver.

View file

@ -20,7 +20,7 @@ if (!defined('IN_PHPBB'))
* *
* @package acm * @package acm
*/ */
interface phpbb_cache_driver_interface interface phpbb_cache_driver_driver_interface
{ {
/** /**
* Load global cache * Load global cache

View file

@ -12,7 +12,7 @@
* *
* @package db * @package db
*/ */
interface phpbb_db_migration_tool_interface interface phpbb_db_migration_tool_tool_interface
{ {
/** /**
* Retrieve a short name used for commands in migrations. * Retrieve a short name used for commands in migrations.

View file

@ -21,7 +21,7 @@ if (!defined('IN_PHPBB'))
* *
* @package extension * @package extension
*/ */
interface phpbb_extension_interface interface phpbb_extension_extension_interface
{ {
/** /**
* enable_step is executed on enabling an extension until it returns false. * enable_step is executed on enabling an extension until it returns false.

View file

@ -22,7 +22,7 @@ if (!defined('IN_PHPBB'))
* *
* @package phpBB3 * @package phpBB3
*/ */
interface phpbb_groupposition_interface interface phpbb_groupposition_groupposition_interface
{ {
/** /**
* Returns the value for a given group, if the group exists. * Returns the value for a given group, if the group exists.
@ -32,7 +32,7 @@ interface phpbb_groupposition_interface
public function get_group_value($group_id); public function get_group_value($group_id);
/** /**
* Get number of groups displayed * Get number of groups displayed
* *
* @return int value of the last item displayed * @return int value of the last item displayed
*/ */

View file

@ -20,7 +20,7 @@ if (!defined('IN_PHPBB'))
* *
* @package phpbb_log * @package phpbb_log
*/ */
interface phpbb_log_interface interface phpbb_log_log_interface
{ {
/** /**
* This function returns the state of the log system. * This function returns the state of the log system.

View file

@ -19,7 +19,7 @@ if (!defined('IN_PHPBB'))
* Base notifications method interface * Base notifications method interface
* @package notifications * @package notifications
*/ */
interface phpbb_notification_method_interface interface phpbb_notification_method_method_interface
{ {
/** /**
* Get notification method name * Get notification method name

View file

@ -19,7 +19,7 @@ if (!defined('IN_PHPBB'))
* Base notifications interface * Base notifications interface
* @package notifications * @package notifications
*/ */
interface phpbb_notification_type_interface interface phpbb_notification_type_type_interface
{ {
/** /**
* Get notification type name * Get notification type name
@ -27,7 +27,7 @@ interface phpbb_notification_type_interface
* @return string * @return string
*/ */
public function get_type(); public function get_type();
/** /**
* Set initial data from the database * Set initial data from the database
* *

View file

@ -20,7 +20,7 @@ if (!defined('IN_PHPBB'))
* *
* @package phpbb_request * @package phpbb_request
*/ */
interface phpbb_request_interface interface phpbb_request_request_interface
{ {
/**#@+ /**#@+
* Constant identifying the super global with the same name. * Constant identifying the super global with the same name.

View file

@ -15,7 +15,7 @@ if (!defined('IN_PHPBB'))
exit; exit;
} }
interface phpbb_tree_interface interface phpbb_tree_tree_interface
{ {
/** /**
* Inserts an item into the database table and into the tree. * Inserts an item into the database table and into the tree.