mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-08 04:18:52 +00:00
[ticket/15289] Update provider
PHPBB3-15289
This commit is contained in:
parent
0b75f1e46a
commit
7f4e47d26f
2 changed files with 10 additions and 5 deletions
|
@ -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.
|
||||
*
|
||||
|
|
Loading…
Add table
Reference in a new issue