mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-29 12:09:20 +03:00
Changed AbstractProvider::IsActive() to be abstract
This commit is contained in:
parent
007e4b25eb
commit
cfc497556e
2 changed files with 6 additions and 4 deletions
|
|
@ -6,8 +6,5 @@ abstract class AbstractProvider
|
|||
{
|
||||
use \MailSo\Log\Inherit;
|
||||
|
||||
public function IsActive() : bool
|
||||
{
|
||||
return false;
|
||||
}
|
||||
abstract public function IsActive() : bool;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -27,6 +27,11 @@ class Identities extends AbstractProvider
|
|||
});
|
||||
}
|
||||
|
||||
public function IsActive() : bool;
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param Account $account
|
||||
* @param bool $allowMultipleIdentities
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue