mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-07 20:08:53 +00:00
[ticket/11700] With namespaces interface will no longer be a valid classname
PHPBB3-11700
This commit is contained in:
parent
c15bde161a
commit
b81613e5e5
11 changed files with 14 additions and 14 deletions
|
@ -20,7 +20,7 @@ if (!defined('IN_PHPBB'))
|
|||
*
|
||||
* @package auth
|
||||
*/
|
||||
interface phpbb_auth_provider_interface
|
||||
interface phpbb_auth_provider_provider_interface
|
||||
{
|
||||
/**
|
||||
* Checks whether the user is currently identified to the authentication
|
|
@ -19,7 +19,7 @@ if (!defined('IN_PHPBB'))
|
|||
* Interface for avatar drivers
|
||||
* @package phpBB3
|
||||
*/
|
||||
interface phpbb_avatar_driver_interface
|
||||
interface phpbb_avatar_driver_driver_interface
|
||||
{
|
||||
/**
|
||||
* Returns the name of the driver.
|
|
@ -20,7 +20,7 @@ if (!defined('IN_PHPBB'))
|
|||
*
|
||||
* @package acm
|
||||
*/
|
||||
interface phpbb_cache_driver_interface
|
||||
interface phpbb_cache_driver_driver_interface
|
||||
{
|
||||
/**
|
||||
* Load global cache
|
|
@ -12,7 +12,7 @@
|
|||
*
|
||||
* @package db
|
||||
*/
|
||||
interface phpbb_db_migration_tool_interface
|
||||
interface phpbb_db_migration_tool_tool_interface
|
||||
{
|
||||
/**
|
||||
* Retrieve a short name used for commands in migrations.
|
|
@ -21,7 +21,7 @@ if (!defined('IN_PHPBB'))
|
|||
*
|
||||
* @package extension
|
||||
*/
|
||||
interface phpbb_extension_interface
|
||||
interface phpbb_extension_extension_interface
|
||||
{
|
||||
/**
|
||||
* enable_step is executed on enabling an extension until it returns false.
|
|
@ -22,7 +22,7 @@ if (!defined('IN_PHPBB'))
|
|||
*
|
||||
* @package phpBB3
|
||||
*/
|
||||
interface phpbb_groupposition_interface
|
||||
interface phpbb_groupposition_groupposition_interface
|
||||
{
|
||||
/**
|
||||
* Returns the value for a given group, if the group exists.
|
|
@ -20,7 +20,7 @@ if (!defined('IN_PHPBB'))
|
|||
*
|
||||
* @package phpbb_log
|
||||
*/
|
||||
interface phpbb_log_interface
|
||||
interface phpbb_log_log_interface
|
||||
{
|
||||
/**
|
||||
* This function returns the state of the log system.
|
|
@ -19,7 +19,7 @@ if (!defined('IN_PHPBB'))
|
|||
* Base notifications method interface
|
||||
* @package notifications
|
||||
*/
|
||||
interface phpbb_notification_method_interface
|
||||
interface phpbb_notification_method_method_interface
|
||||
{
|
||||
/**
|
||||
* Get notification method name
|
|
@ -19,7 +19,7 @@ if (!defined('IN_PHPBB'))
|
|||
* Base notifications interface
|
||||
* @package notifications
|
||||
*/
|
||||
interface phpbb_notification_type_interface
|
||||
interface phpbb_notification_type_type_interface
|
||||
{
|
||||
/**
|
||||
* Get notification type name
|
|
@ -20,7 +20,7 @@ if (!defined('IN_PHPBB'))
|
|||
*
|
||||
* @package phpbb_request
|
||||
*/
|
||||
interface phpbb_request_interface
|
||||
interface phpbb_request_request_interface
|
||||
{
|
||||
/**#@+
|
||||
* Constant identifying the super global with the same name.
|
|
@ -15,7 +15,7 @@ if (!defined('IN_PHPBB'))
|
|||
exit;
|
||||
}
|
||||
|
||||
interface phpbb_tree_interface
|
||||
interface phpbb_tree_tree_interface
|
||||
{
|
||||
/**
|
||||
* Inserts an item into the database table and into the tree.
|
Loading…
Add table
Reference in a new issue