File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 3
3
<id >twofactor_email</id >
4
4
<version >2.7.4</version >
5
5
<dependencies >
6
- <nextcloud min-version =" 24" max-version =" 29 " />
7
- <php min-version =" 8.0" max-version =" 8.3 " />
6
+ <nextcloud min-version =" 24" max-version =" 31 " />
7
+ <php min-version =" 8.0" max-version =" 8.4 " />
8
8
</dependencies >
9
9
<repository type =" git" >https://github.com/nursoda/twofactor_email.git</repository >
10
10
<licence >agpl</licence >
Original file line number Diff line number Diff line change 6
6
7
7
use OCP \Defaults ;
8
8
use OCP \IL10N ;
9
- use OCP \ ILogger ;
9
+ use Psr \ Log \ LoggerInterface ;
10
10
use OCP \IUser ;
11
11
use OCP \Mail \IMailer ;
12
12
@@ -17,15 +17,15 @@ class Email {
17
17
/** @var IL10N */
18
18
private $ l10n ;
19
19
20
- /** @var ILogger */
20
+ /** @var LoggerInterface */
21
21
private $ logger ;
22
22
23
23
/** @var Defaults */
24
24
private $ themingDefaults ;
25
25
26
26
public function __construct (IMailer $ mailer ,
27
27
IL10N $ l10n ,
28
- ILogger $ logger ,
28
+ LoggerInterface $ logger ,
29
29
Defaults $ themingDefaults ) {
30
30
$ this ->mailer = $ mailer ;
31
31
$ this ->l10n = $ l10n ;
You can’t perform that action at this time.
0 commit comments