mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-10 03:36:31 +02:00
[ticket/15289] Update provider
PHPBB3-15289
This commit is contained in:
@ -15,16 +15,14 @@ namespace phpbb\storage\provider;
|
||||
|
||||
class local implements provider_interface
|
||||
{
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function get_name()
|
||||
{
|
||||
return 'local';
|
||||
}
|
||||
|
||||
public function get_class()
|
||||
{
|
||||
return get_class($this);
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
|
@ -15,6 +15,13 @@ namespace phpbb\storage\provider;
|
||||
|
||||
interface provider_interface
|
||||
{
|
||||
/**
|
||||
* Gets adapter name.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function get_name();
|
||||
|
||||
/**
|
||||
* Gets adapter class.
|
||||
*
|
||||
|
Reference in New Issue
Block a user