File tree Expand file tree Collapse file tree 6 files changed +21
-21
lines changed Expand file tree Collapse file tree 6 files changed +21
-21
lines changed Original file line number Diff line number Diff line change 3
3
/**
4
4
* conjoon
5
5
* php-lib-conjoon
6
- * Copyright (C) 2019-2022 Thorsten Suckow-Homberg https://github.com/conjoon/php-lib-conjoon
6
+ * Copyright (C) 2019-2023 Thorsten Suckow-Homberg https://github.com/conjoon/php-lib-conjoon
7
7
*
8
8
* Permission is hereby granted, free of charge, to any person
9
9
* obtaining a copy of this software and associated documentation
30
30
namespace Conjoon \Illuminate \Auth \Imap ;
31
31
32
32
use Conjoon \Illuminate \Auth \Imap \Util as ImapUtil ;
33
+ use Conjoon \Illuminate \Auth \ImapUser ;
34
+ use Conjoon \Illuminate \Auth \ImapUserProvider ;
33
35
use Illuminate \Contracts \Auth \Authenticatable ;
34
36
35
37
/**
Original file line number Diff line number Diff line change 3
3
/**
4
4
* conjoon
5
5
* php-lib-conjoon
6
- * Copyright (C) 2019-2022 Thorsten Suckow-Homberg https://github.com/conjoon/php-lib-conjoon
6
+ * Copyright (C) 2019-2023 Thorsten Suckow-Homberg https://github.com/conjoon/php-lib-conjoon
7
7
*
8
8
* Permission is hereby granted, free of charge, to any person
9
9
* obtaining a copy of this software and associated documentation
27
27
28
28
declare (strict_types=1 );
29
29
30
- namespace Conjoon \Illuminate \Auth \ Imap ;
30
+ namespace Conjoon \Illuminate \Auth ;
31
31
32
32
use Conjoon \Mail \Client \Data \MailAccount ;
33
33
use Illuminate \Contracts \Auth \Authenticatable ;
Original file line number Diff line number Diff line change 3
3
/**
4
4
* conjoon
5
5
* php-lib-conjoon
6
- * Copyright (C) 2019-2022 Thorsten Suckow-Homberg https://github.com/conjoon/php-lib-conjoon
6
+ * Copyright (C) 2019-2023 Thorsten Suckow-Homberg https://github.com/conjoon/php-lib-conjoon
7
7
*
8
8
* Permission is hereby granted, free of charge, to any person
9
9
* obtaining a copy of this software and associated documentation
27
27
28
28
declare (strict_types=1 );
29
29
30
- namespace Conjoon \Illuminate \Auth \ Imap ;
30
+ namespace Conjoon \Illuminate \Auth ;
31
31
32
+ use Conjoon \Illuminate \Auth \Imap \Conjoon ;
32
33
use Illuminate \Contracts \Auth \UserProvider ;
33
34
34
35
/**
@@ -45,7 +46,7 @@ interface ImapUserProvider extends UserProvider
45
46
* @param string $username
46
47
* @param string $password
47
48
*
48
- * @return Conjoon\Illuminate\Auth\Imap\ ImapUser|null
49
+ * @return ImapUser|null
49
50
*/
50
51
public function getUser (string $ username , string $ password ): ?ImapUser ;
51
52
}
Original file line number Diff line number Diff line change 3
3
/**
4
4
* conjoon
5
5
* php-lib-conjoon
6
- * Copyright (C) 2019-2022 Thorsten Suckow-Homberg https://github.com/conjoon/php-lib-conjoon
6
+ * Copyright (C) 2019-2023 Thorsten Suckow-Homberg https://github.com/conjoon/php-lib-conjoon
7
7
*
8
8
* Permission is hereby granted, free of charge, to any person
9
9
* obtaining a copy of this software and associated documentation
30
30
namespace Tests \Conjoon \Illuminate \Auth \Imap ;
31
31
32
32
use Conjoon \Illuminate \Auth \Imap \DefaultImapUserProvider ;
33
- use Conjoon \Illuminate \Auth \Imap \ImapUser ;
34
- use Conjoon \Illuminate \Auth \Imap \ImapUserProvider ;
35
33
use Conjoon \Mail \Client \Data \MailAccount ;
34
+ use Conjoon \Illuminate \Auth \ImapUser ;
35
+ use Conjoon \Illuminate \Auth \ImapUserProvider ;
36
36
use Tests \TestCase ;
37
37
38
38
/**
39
- * Class DefaultImapUserProviderTest
40
- * @package Tests\Conjoon\Illuminate\Auth\Imap
39
+ * Tests DefaultImapUserProvider.
41
40
*/
42
41
class DefaultImapUserProviderTest extends TestCase
43
42
{
Original file line number Diff line number Diff line change 3
3
/**
4
4
* conjoon
5
5
* php-lib-conjoon
6
- * Copyright (C) 2019-2022 Thorsten Suckow-Homberg https://github.com/conjoon/php-lib-conjoon
6
+ * Copyright (C) 2019-2023 Thorsten Suckow-Homberg https://github.com/conjoon/php-lib-conjoon
7
7
*
8
8
* Permission is hereby granted, free of charge, to any person
9
9
* obtaining a copy of this software and associated documentation
27
27
28
28
declare (strict_types=1 );
29
29
30
- namespace Tests \Conjoon \Illuminate \Auth \ Imap ;
30
+ namespace Tests \Conjoon \Illuminate \Auth ;
31
31
32
- use Conjoon \Illuminate \Auth \Imap \ ImapUserProvider ;
32
+ use Conjoon \Illuminate \Auth \ImapUserProvider ;
33
33
use Illuminate \Contracts \Auth \UserProvider ;
34
34
use Tests \TestCase ;
35
35
36
36
/**
37
- * Class ImapUserProviderTest
38
- * @package Tests\Conjoon\Illuminate\Auth\Imap
37
+ * Tests ImapUserProvider.
39
38
*/
40
39
class ImapUserProviderTest extends TestCase
41
40
{
Original file line number Diff line number Diff line change 3
3
/**
4
4
* conjoon
5
5
* php-lib-conjoon
6
- * Copyright (C) 2019-2022 Thorsten Suckow-Homberg https://github.com/conjoon/php-lib-conjoon
6
+ * Copyright (C) 2019-2023 Thorsten Suckow-Homberg https://github.com/conjoon/php-lib-conjoon
7
7
*
8
8
* Permission is hereby granted, free of charge, to any person
9
9
* obtaining a copy of this software and associated documentation
27
27
28
28
declare (strict_types=1 );
29
29
30
- namespace Tests \Conjoon \Illuminate \Auth \ Imap ;
30
+ namespace Tests \Conjoon \Illuminate \Auth ;
31
31
32
- use Conjoon \Illuminate \Auth \Imap \ImapUser ;
33
32
use Conjoon \Mail \Client \Data \MailAccount ;
33
+ use Conjoon \Illuminate \Auth \ImapUser ;
34
34
use Illuminate \Contracts \Auth \Authenticatable ;
35
35
use Tests \TestCase ;
36
36
37
37
/**
38
- * Class ImapUserTest
39
- * @package Tests\Conjoon\Illuminate\Auth\Imap
38
+ * Tests ImapUser.
40
39
*/
41
40
class ImapUserTest extends TestCase
42
41
{
You can’t perform that action at this time.
0 commit comments