mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-07 16:37:02 +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;
|
use \MailSo\Log\Inherit;
|
||||||
|
|
||||||
public function IsActive() : bool
|
abstract public function IsActive() : bool;
|
||||||
{
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -27,6 +27,11 @@ class Identities extends AbstractProvider
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function IsActive() : bool;
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param Account $account
|
* @param Account $account
|
||||||
* @param bool $allowMultipleIdentities
|
* @param bool $allowMultipleIdentities
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue