mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-07 20:08:53 +00:00
[ticket/17493] Remove unused methods and use statements
PHPBB-17493
This commit is contained in:
parent
3caab55e81
commit
3125f3e1d3
3 changed files with 1 additions and 9 deletions
|
@ -13,8 +13,6 @@
|
|||
|
||||
namespace phpbb\db\migration\data\v310;
|
||||
|
||||
use phpbb\messenger\method\messenger_interface;
|
||||
|
||||
class notification_options_reconvert extends \phpbb\db\migration\migration
|
||||
{
|
||||
protected const NOTIFY_EMAIL = 0;
|
||||
|
|
|
@ -141,11 +141,6 @@ abstract class base implements messenger_interface
|
|||
$this->set_use_queue();
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
abstract public function get_id(): int;
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
|
|
|
@ -19,14 +19,13 @@ use phpbb\user_loader;
|
|||
use phpbb\config\config;
|
||||
use phpbb\db\driver\driver_interface;
|
||||
use phpbb\di\service_collection;
|
||||
use phpbb\messenger\method\messenger_interface;
|
||||
|
||||
/**
|
||||
* Email notification method class
|
||||
* This class handles sending emails for notifications
|
||||
*/
|
||||
|
||||
class email extends \phpbb\notification\method\messenger_base
|
||||
class email extends messenger_base
|
||||
{
|
||||
/** @var user */
|
||||
protected $user;
|
||||
|
|
Loading…
Add table
Reference in a new issue